From patchwork Wed Dec 28 22:29:45 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Paul Elder X-Patchwork-Id: 18057 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 F0CA5C3220 for ; Wed, 28 Dec 2022 22:30:21 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id A3983625CF; Wed, 28 Dec 2022 23:30:21 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=libcamera.org; s=mail; t=1672266621; bh=6/8c2/5xyoWJaUWWdX2bCzUsfpvBhsrBcR1Ct107KEU=; 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=fglybPJBVz0oInFQVIwdhX9D2hjr55S/HzzwIT6J/mDEHXdLHOvkeDhveHZGjZq6p 8gthTVhB4zgnSQIkSQIe0abymLc3P0Qz7s3WV/2ddsCdhVq9LGHbWcxBxGzP7ROObL Wv7Grc+5PUMxu9nMKLhsFoRj+ZY4yuxpJ2YZss+Qe0k02x2PdQEQDFdyf2O9dvsahS BFQsrABfAEinZOfmROJzoaJt/Xo5u2Tqbg3SQTQiIZdEjgbOrb6tREpZGcmnbDnVKb 1CVb8Cu2V3ZYGErl6MrX6uslKaTpM0FWCx+7RDXZl9g5hU8XzF70/nLVEeuJalZgo8 U1EK7lWT1vimA== 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 821C361F13 for ; Wed, 28 Dec 2022 23:30:17 +0100 (CET) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="uKog8EEN"; dkim-atps=neutral Received: from pyrite.mediacom.info (unknown [IPv6:2604:2d80:ad8a:9000:1bf9:855b:22de:3645]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 5E09D25B; Wed, 28 Dec 2022 23:30:16 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1672266617; bh=6/8c2/5xyoWJaUWWdX2bCzUsfpvBhsrBcR1Ct107KEU=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=uKog8EENgOEmmfnuS78CLRzX6qeZ8iplyYpSo/12nMbQ8E0Lo1M/JDPykMwpUF6ge WQJtVF6OjOmK7vpBjLCCJ+IaqeiC9R6UtHfk+Z6EUeZeYoAyy1htmHWIUrbS4fA5go e3t5KjIFOvW9AMNHOx7LrpdlGSXy7rlnFEDvTEWE= To: libcamera-devel@lists.libcamera.org Date: Wed, 28 Dec 2022 16:29:45 -0600 Message-Id: <20221228223003.2265712-2-paul.elder@ideasonboard.com> X-Mailer: git-send-email 2.35.1 In-Reply-To: <20221228223003.2265712-1-paul.elder@ideasonboard.com> References: <20221228223003.2265712-1-paul.elder@ideasonboard.com> MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH v10 01/19] 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 --- No change in v10 New in v9 --- src/libcamera/pipeline/rkisp1/rkisp1.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/libcamera/pipeline/rkisp1/rkisp1.cpp b/src/libcamera/pipeline/rkisp1/rkisp1.cpp index c27b3ef9..5bdb4d25 100644 --- a/src/libcamera/pipeline/rkisp1/rkisp1.cpp +++ b/src/libcamera/pipeline/rkisp1/rkisp1.cpp @@ -23,11 +23,12 @@ #include #include #include +#include +#include + #include #include #include -#include -#include #include "libcamera/internal/camera.h" #include "libcamera/internal/camera_sensor.h"