From patchwork Tue Oct 20 09:15:04 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Hirokazu Honda X-Patchwork-Id: 10131 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 45A14BDB1F for ; Tue, 20 Oct 2020 09:15:26 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id 0F592613CD; Tue, 20 Oct 2020 11:15:26 +0200 (CEST) Authentication-Results: lancelot.ideasonboard.com; dkim=fail reason="signature verification failed" (1024-bit key; unprotected) header.d=chromium.org header.i=@chromium.org header.b="dpgEH6X0"; dkim-atps=neutral Received: from mail-pl1-x641.google.com (mail-pl1-x641.google.com [IPv6:2607:f8b0:4864:20::641]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 3CCD561373 for ; Tue, 20 Oct 2020 11:15:24 +0200 (CEST) Received: by mail-pl1-x641.google.com with SMTP id 1so715147ple.2 for ; Tue, 20 Oct 2020 02:15:24 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=chromium.org; s=google; h=from:to:cc:subject:date:message-id:in-reply-to:references :mime-version:content-transfer-encoding; bh=uBcRhxoAf8ifK1qfBk+e0R7AIYM/ro7vengDNFujuX0=; b=dpgEH6X0GZ+1+SBUaWIl4oaPnoyOnyN9lopvUAfe/xW4rSziZTQe9D3L2Pq7AzrT+0 vBtfa25KO/zCI6bqe5RkNotSq59OVWCMyHRVJ9nkU5SCnIJb7/8e4gRlVq084ezF1b31 FPf63Uyba38Io/N2B0lZCYSAt3ER5wPD5tQ1k= 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:in-reply-to :references:mime-version:content-transfer-encoding; bh=uBcRhxoAf8ifK1qfBk+e0R7AIYM/ro7vengDNFujuX0=; b=pwaHwq6wbiA9PS/AvNju3CjSMJq/ugf41E9IxrQXYvJdPF67K5bTg5ARBEQIU+QJ7v 4tjKv9l3JxJQndZEgMOmacXZ6nfLXKboOZmcBQVTJ4strthRvB/fYr/P73v2OCD/varU ilIzBeEDGaV9bxDFJ4TR3z0qwRG4zi+Z6/jpCw1TLWWXpPemQSXso7oDK3/LZ9I1mAhL xGPRfvQDo/OcY51mWUTbF1f2bWV7X6Nc70ZMPbp1Q38ntQq46FIlVzibq4sL2JmmlxK2 Db237HZ8q2H8ZsVI7hwYbeatuoqMaMNVNkRYlGvnsI0IcgGdhlRlUiiv20ihRTbccjBT 5cow== X-Gm-Message-State: AOAM533Ab/4sjF/fWgJfkoHLHUycZrZ3/ZtlXjRx9kP7TVIpskMXt4nz rp/TvkTlCH7M93nIFNTheEAb1UDES3iW4g== X-Google-Smtp-Source: ABdhPJz90UsE9Xj/2b86BDKuAEsBqz2Q9WLjtubsRoJo8koArPMDdB5FpHyRSS9yDiA9rNzSdWetsA== X-Received: by 2002:a17:90b:50a:: with SMTP id r10mr1947773pjz.231.1603185322695; Tue, 20 Oct 2020 02:15:22 -0700 (PDT) Received: from hiroh.tok.corp.google.com ([2401:fa00:8f:2:de4a:3eff:fe7d:f78f]) by smtp.gmail.com with ESMTPSA id p8sm1482014pgs.34.2020.10.20.02.15.21 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Tue, 20 Oct 2020 02:15:22 -0700 (PDT) From: Hirokazu Honda To: libcamera-devel@lists.libcamera.org Date: Tue, 20 Oct 2020 18:15:04 +0900 Message-Id: <20201020091505.138898-7-hiroh@chromium.org> X-Mailer: git-send-email 2.29.0.rc1.297.gfa9743e501-goog In-Reply-To: <20201020091505.138898-1-hiroh@chromium.org> References: <20201020091505.138898-1-hiroh@chromium.org> MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH v2 7/8] ipa: Omit extra semicolon 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" There is the unnecessary semicolon after ipaCreate() in raspberrypi.cpp. This removes it. Signed-off-by: Hirokazu Honda Reviewed-by: Laurent Pinchart --- src/ipa/raspberrypi/raspberrypi.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ipa/raspberrypi/raspberrypi.cpp b/src/ipa/raspberrypi/raspberrypi.cpp index 48a72dd..1c255aa 100644 --- a/src/ipa/raspberrypi/raspberrypi.cpp +++ b/src/ipa/raspberrypi/raspberrypi.cpp @@ -1150,6 +1150,6 @@ struct ipa_context *ipaCreate() return new IPAInterfaceWrapper(std::make_unique()); } -}; /* extern "C" */ +} /* extern "C" */ } /* namespace libcamera */