From patchwork Tue Oct 20 00:03:06 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Laurent Pinchart X-Patchwork-Id: 10101 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 96B69BDB1F for ; Tue, 20 Oct 2020 00:04:08 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id 66574613AD; Tue, 20 Oct 2020 02:04:07 +0200 (CEST) Authentication-Results: lancelot.ideasonboard.com; dkim=fail reason="signature verification failed" (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="p078zlbu"; dkim-atps=neutral Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [213.167.242.64]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id A064760CE6 for ; Tue, 20 Oct 2020 02:04:05 +0200 (CEST) Received: from pendragon.lan (62-78-145-57.bb.dnainternet.fi [62.78.145.57]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 3A3FF93 for ; Tue, 20 Oct 2020 02:04:05 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1603152245; bh=MtxCaA/JlhhIbeNYyCIwH+RRPtsWH9hT72zglCmaZMk=; h=From:To:Subject:Date:In-Reply-To:References:From; b=p078zlbue3n1WUl2thPvDDuH/XSQeDQNDNESOO5qMwU2ka2YoFbI1gcWel6xLpuPG 9BPGLMvLtJ6HjKrA44Jg7tNl6xe7J7/Ue3qFR7x8EOeed0/ypmWh6EQPECBeXbZXsA +GlhMi3N8DDtUZnFctz5yMuqRFZjy4hkilHsUYMI= From: Laurent Pinchart To: libcamera-devel@lists.libcamera.org Date: Tue, 20 Oct 2020 03:03:06 +0300 Message-Id: <20201020000310.3008-2-laurent.pinchart@ideasonboard.com> X-Mailer: git-send-email 2.27.0 In-Reply-To: <20201020000310.3008-1-laurent.pinchart@ideasonboard.com> References: <20201020000310.3008-1-laurent.pinchart@ideasonboard.com> MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH 1/5] ipa: Rename ipa_vimc.h to vimc.h 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" To be consistent with the other pipeline handlers that don't prefix their IPA protocol header with ipa_, rename ipa_vimc.h to vimc.h. Signed-off-by: Laurent Pinchart Reviewed-by: Paul Elder Reviewed-by: Kieran Bingham --- include/libcamera/ipa/{ipa_vimc.h => vimc.h} | 2 +- src/ipa/vimc/vimc.cpp | 2 +- test/ipa/ipa_interface_test.cpp | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) rename include/libcamera/ipa/{ipa_vimc.h => vimc.h} (88%) diff --git a/include/libcamera/ipa/ipa_vimc.h b/include/libcamera/ipa/vimc.h similarity index 88% rename from include/libcamera/ipa/ipa_vimc.h rename to include/libcamera/ipa/vimc.h index 8e82dd94bf47..22d97992f80f 100644 --- a/include/libcamera/ipa/ipa_vimc.h +++ b/include/libcamera/ipa/vimc.h @@ -2,7 +2,7 @@ /* * Copyright (C) 2019, Google Inc. * - * ipa_vimc.h - Vimc Image Processing Algorithm module + * vimc.h - Vimc Image Processing Algorithm module */ #ifndef __LIBCAMERA_IPA_VIMC_H__ diff --git a/src/ipa/vimc/vimc.cpp b/src/ipa/vimc/vimc.cpp index 372a15f555cb..cf8411359e40 100644 --- a/src/ipa/vimc/vimc.cpp +++ b/src/ipa/vimc/vimc.cpp @@ -5,7 +5,7 @@ * ipa_vimc.cpp - Vimc Image Processing Algorithm module */ -#include +#include #include #include diff --git a/test/ipa/ipa_interface_test.cpp b/test/ipa/ipa_interface_test.cpp index 1bc93a631a63..67488409e7ff 100644 --- a/test/ipa/ipa_interface_test.cpp +++ b/test/ipa/ipa_interface_test.cpp @@ -14,7 +14,7 @@ #include #include -#include +#include #include #include "libcamera/internal/device_enumerator.h"