From patchwork Fri Dec 16 12:29:22 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Paul Elder X-Patchwork-Id: 18015 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 BB65CC31E9 for ; Fri, 16 Dec 2022 12:30:05 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id 7C8716339D; Fri, 16 Dec 2022 13:30:05 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=libcamera.org; s=mail; t=1671193805; bh=J+Dh7BQdJU0XP23221A3LpBpTQDVMagTTDvFDJONVy0=; h=To:Date:In-Reply-To:References:Subject:List-Id:List-Unsubscribe: List-Archive:List-Post:List-Help:List-Subscribe:From:Reply-To: From; b=RJSy89iXZm52GinAcfrbVwujRtNsb3eTgsmcGOewnAzZxNaGD+MSs9EZnWlY6vXpc vy62myk9OPS0KcTM1q63mAVGkd+M1fVvKwLEtM8FFSdhLSa8R/IKGjxxsXGoxamwn/ szC62e2IxF9tDlriVgyFqGQ7xGfBa6yLN7/EyqOHt10FRTpUc1odAgxHBjwb+iAseC LbIwbxrXVnKaGetzEKUAgX/2QiRwGA2hCMhQX5WG33zCL1OsYvF8K89RhutfEFAlPQ /TZS1Bu+3uqITX/uBFnUPusWAZSqJY6w7iaPrH7+MpN0C2WYfAUuIMqBeN1IPKc4n5 1+jb9LGzrGYBg== 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 C9E0F6339D for ; Fri, 16 Dec 2022 13:30:02 +0100 (CET) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="ZSFno2sI"; dkim-atps=neutral Received: from pyrite.tail37cf.ts.net (h175-177-042-159.catv02.itscom.jp [175.177.42.159]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 9F0D0110E; Fri, 16 Dec 2022 13:30:01 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1671193802; bh=J+Dh7BQdJU0XP23221A3LpBpTQDVMagTTDvFDJONVy0=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=ZSFno2sIZ2lfeBn2c7BswbOMUZhX3ZoW4PJSMFSsDOgo+p7ULemD2xB8Abn4FxWRl HMkRSdffudqf5Xe1A3+V5yTHHuNGv6bnEglt4rmJVoQHu1zxwYO8ZpB6aJFA1zZXTf 5tcZiqbdDYZoH70dtMX0yL4zg5lhOCr0zay2niB4= To: libcamera-devel@lists.libcamera.org Date: Fri, 16 Dec 2022 21:29:22 +0900 Message-Id: <20221216122939.256534-2-paul.elder@ideasonboard.com> X-Mailer: git-send-email 2.35.1 In-Reply-To: <20221216122939.256534-1-paul.elder@ideasonboard.com> References: <20221216122939.256534-1-paul.elder@ideasonboard.com> MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH v9 01/18] pipeline: rkisp1: Reorder headers to appease the linter 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: , X-Patchwork-Original-From: Paul Elder via libcamera-devel From: Paul Elder Reply-To: Paul Elder Errors-To: libcamera-devel-bounces@lists.libcamera.org Sender: "libcamera-devel" Re-order the header includes to appease the style-checker, so that when we add headers later (specifically, property_ids.h), it won't complain. Signed-off-by: Paul Elder Reviewed-by: Jacopo Mondi Reviewed-by: Umang Jain --- src/libcamera/pipeline/rkisp1/rkisp1.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libcamera/pipeline/rkisp1/rkisp1.cpp b/src/libcamera/pipeline/rkisp1/rkisp1.cpp index eb9ad65c..f658d75e 100644 --- a/src/libcamera/pipeline/rkisp1/rkisp1.cpp +++ b/src/libcamera/pipeline/rkisp1/rkisp1.cpp @@ -23,11 +23,11 @@ #include #include #include +#include +#include #include #include #include -#include -#include #include "libcamera/internal/camera.h" #include "libcamera/internal/camera_sensor.h"