summaryrefslogtreecommitdiff
path: root/src/libcamera/ipa_manager.cpp
diff options
context:
space:
mode:
authorSebastian Fricke <sebastian.fricke.linux@gmail.com>2020-10-29 08:33:05 +0100
committerLaurent Pinchart <laurent.pinchart@ideasonboard.com>2020-10-30 03:28:17 +0200
commit58d487b10e06ad823103957c1e6aa2201720fdae (patch)
treed7b75459ad52c1208605965761ae92b963c7c880 /src/libcamera/ipa_manager.cpp
parentb053384ffab467ed016019bbcf8121a6f9e48fed (diff)
libcamera: ipa_manager: Fix typo in description
The class IPAManager has no method ipaCreate, but the method createIPA. s/pipeline handlers call the IPAManager::ipaCreate() /pipeline handlers call the IPAManager::createIPA() Signed-off-by: Sebastian Fricke <sebastian.fricke.linux@gmail.com> Reviewed-by: Jacopo Mondi <jacopo@jmondi.org> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Diffstat (limited to 'src/libcamera/ipa_manager.cpp')
-rw-r--r--src/libcamera/ipa_manager.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcamera/ipa_manager.cpp b/src/libcamera/ipa_manager.cpp
index 046fd5c6..ad05b9c9 100644
--- a/src/libcamera/ipa_manager.cpp
+++ b/src/libcamera/ipa_manager.cpp
@@ -43,7 +43,7 @@ LOG_DEFINE_CATEGORY(IPAManager)
* The isolation mechanism ensures that no code from a closed-source module is
* ever run in the libcamera process.
*
- * To create an IPA context, pipeline handlers call the IPAManager::ipaCreate()
+ * To create an IPA context, pipeline handlers call the IPAManager::createIPA()
* method. For a directly loaded module, the manager calls the module's
* ipaCreate() function directly and wraps the returned context in an
* IPAContextWrapper that exposes an IPAInterface.