From patchwork Thu Oct 29 07:33:05 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sebastian Fricke X-Patchwork-Id: 10293 Return-Path: X-Original-To: parsemail@patchwork.libcamera.org Delivered-To: parsemail@patchwork.libcamera.org Received: from lancelot.ideasonboard.com (lancelot.ideasonboard.com [92.243.16.209]) by patchwork.libcamera.org (Postfix) with ESMTPS id EB637BDB1E for ; Thu, 29 Oct 2020 07:33:09 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id 87F6262825; Thu, 29 Oct 2020 08:33:09 +0100 (CET) Authentication-Results: lancelot.ideasonboard.com; dkim=fail reason="signature verification failed" (2048-bit key; unprotected) header.d=gmail.com header.i=@gmail.com header.b="dEEMf1gE"; dkim-atps=neutral Received: from mail-ej1-x635.google.com (mail-ej1-x635.google.com [IPv6:2a00:1450:4864:20::635]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 02F006034A for ; Thu, 29 Oct 2020 08:33:09 +0100 (CET) Received: by mail-ej1-x635.google.com with SMTP id j24so2408335ejc.11 for ; Thu, 29 Oct 2020 00:33:08 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=from:to:cc:subject:date:message-id:mime-version :content-transfer-encoding; bh=iMc29tjLrdmtawMv6GjNv35ARX/pwD7k/UbPL7MqlZQ=; b=dEEMf1gET3/AnmofiO0O8xAdma17XJ8u6NminKMgtBK6M0HO6OB4A3YqzHzGZwozeZ uyFY2SyGeCZJR3aW0oDnWG45AM+3DAnjTI5P/fhA8MuZM5X5E9A049PnS2S39/JyekBg jUtIIiRcVSVzZJw57FzrhzduUXO9Yx/+4/vBqaPvWo7YXEMQ7l2qNTEgWYg0Vsod2d7w zB1RwfC+dLsOc+2MFAC/aJU4svVKKN4m/mgePpd4xwmoPPAxnFML/XHb0QTubucY2w5h jib/pba6rwsSZaVG2CggoOzQtV895c2dMQrDmexVmrqcZl0IE1PR/yxJ7z8TuwcoivjG jHxg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:mime-version :content-transfer-encoding; bh=iMc29tjLrdmtawMv6GjNv35ARX/pwD7k/UbPL7MqlZQ=; b=pE6t4psBUrYdwMmjRCi9NCCrqCWJ2uomdnPNWHGgQSmM+Dm/9zBUB1cnjJuAc1GuLE WW1Dwmhwk9ZBTtBytb2DsE6J3A7VuskKJy/rT3ctzd1DgFpcLj9hpcRARw6d/h2e2ZU+ p9oHKzCSXybX5Dy/pU1NOE5ba2B58Ycb2UWPH/qvIHb+z93md/81p42XnnhmnSnlVUF9 cc4jMxf+8sFiYDZQpf7n2Lpp9rNG2xwVH5qxJeSC8K7pGT5JdlxFnwhRczCWvakXPJYa Zcqh7Xp+/T07EKx64rJKiAgGDD6f2tYjnFUxngp54S/xlppxxtqQh0OCqBHAJFDxD5Os vcXg== X-Gm-Message-State: AOAM532H7Zw/2WRFSPY6EKou9GEyJ7QignOpQxQr6JbVOvz6zbzcz+Wx khtlWIrEDBX/VOaIjTIRYfuMJT0E4zY= X-Google-Smtp-Source: ABdhPJxJTJ+MXIerXbDqfiUSmRHMG5j6waZHscBIfc0MkrxRjdGZ2x12jmbbrxGmeEF5xHzHHiV7JA== X-Received: by 2002:a17:906:c44d:: with SMTP id ck13mr2696010ejb.312.1603956788367; Thu, 29 Oct 2020 00:33:08 -0700 (PDT) Received: from basti.fritz.box (p200300d1ff0150000177fa94b6a5f6ca.dip0.t-ipconnect.de. [2003:d1:ff01:5000:177:fa94:b6a5:f6ca]) by smtp.gmail.com with ESMTPSA id q9sm956619ejd.66.2020.10.29.00.33.07 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Thu, 29 Oct 2020 00:33:07 -0700 (PDT) From: Sebastian Fricke To: libcamera-devel@lists.libcamera.org Date: Thu, 29 Oct 2020 08:33:05 +0100 Message-Id: <20201029073305.12803-1-sebastian.fricke.linux@gmail.com> X-Mailer: git-send-email 2.20.1 MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH] libcamera: ipa_manager: Fix typo in description X-BeenThere: libcamera-devel@lists.libcamera.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: libcamera-devel-bounces@lists.libcamera.org Sender: "libcamera-devel" 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 Reviewed-by: Jacopo Mondi Reviewed-by: Laurent Pinchart --- src/libcamera/ipa_manager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libcamera/ipa_manager.cpp b/src/libcamera/ipa_manager.cpp index 046fd5c..ad05b9c 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.