From patchwork Wed May 26 00:08:54 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Laurent Pinchart X-Patchwork-Id: 12415 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 3CD7FC3200 for ; Wed, 26 May 2021 00:09:10 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id AAC3868918; Wed, 26 May 2021 02:09:08 +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="SjIs6mRh"; dkim-atps=neutral Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [IPv6:2001:4b98:dc2:55:216:3eff:fef7:d647]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 9C53668918 for ; Wed, 26 May 2021 02:09: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 D2699580 for ; Wed, 26 May 2021 02:09:04 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1621987745; bh=2OYjdNlqU9Qp7zHGYe3BceKU2NNpvU72Yd/bziagMls=; h=From:To:Subject:Date:In-Reply-To:References:From; b=SjIs6mRhsl3wDKm+QjZM3Ae/vb11s9lhndKud7PenT8bLTheDCO0XCLNF5s8otgaK NBoZZ7/aTkNf1gN1tg82/okQ/DD7nj/9ItEMxTPD2zuQEoM3SdDtrbGXRGK+m36aYW 2ieYeAQs/8fhnuBEGIJjwZEAQdVcmUxm0FT24HFc= From: Laurent Pinchart To: libcamera-devel@lists.libcamera.org Date: Wed, 26 May 2021 03:08:54 +0300 Message-Id: <20210526000855.17501-2-laurent.pinchart@ideasonboard.com> X-Mailer: git-send-email 2.28.1 In-Reply-To: <20210526000855.17501-1-laurent.pinchart@ideasonboard.com> References: <20210526000855.17501-1-laurent.pinchart@ideasonboard.com> MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH 1/2] android: camera_hal_config: Move include to .cpp file 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 header isn't needed in camera_hal_config.h, move its inclusion to camera_hal_config.cpp. Signed-off-by: Laurent Pinchart Reviewed-by: Hirokazu Honda Acked-by: Jacopo Mondi Reviewed-by: Niklas Söderlund --- src/android/camera_hal_config.cpp | 1 + src/android/camera_hal_config.h | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/src/android/camera_hal_config.cpp b/src/android/camera_hal_config.cpp index 12d69a3f5f3c..d15df2e30c2c 100644 --- a/src/android/camera_hal_config.cpp +++ b/src/android/camera_hal_config.cpp @@ -6,6 +6,7 @@ */ #include "camera_hal_config.h" +#include #include #include #include diff --git a/src/android/camera_hal_config.h b/src/android/camera_hal_config.h index 0555c6da2c20..97dc69c1def5 100644 --- a/src/android/camera_hal_config.h +++ b/src/android/camera_hal_config.h @@ -7,7 +7,6 @@ #ifndef __ANDROID_CAMERA_HAL_CONFIG_H__ #define __ANDROID_CAMERA_HAL_CONFIG_H__ -#include #include #include