From patchwork Wed Aug 3 11:21:46 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Paul Elder X-Patchwork-Id: 16940 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 EB097BE173 for ; Wed, 3 Aug 2022 11:22:10 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id 9EC4F6331C; Wed, 3 Aug 2022 13:22:10 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=libcamera.org; s=mail; t=1659525730; bh=NqTLPL5PNY3ylhJLKvqV7VA95VGN7YleNtXY+CJLXX0=; 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=ZE9sP+tJF3D8w9dRgMcUVEZFQmE//MKMqGIgkIZE27NPMSetKEWYXg3L/Wo4+LRLg zpf0jwQpIQajd1N4tmWHfDZMfKihLfCq2upm17NJjtGu8IpDGkNYM/d9vIEG9rxR+p 1X33ohIN+CH9M4Pb8L9eqt5yXPBI1O8Qv3CvEnyCDrB6fDsQLagN/N3hhKxLhX024V f2k6Xjec5QBlntYbn1NaArvlPLwo3kdiYs5WZ05RQJ9pcKgzS0BIZToxfUY8e86hC+ jDJMjn8exsq08vWud7XSHyXVONxSy5XBVWFPXiX8klGFRszbG/pQIi9LYOcg9aRahI 3eos+abcJ8h1w== 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 2FE276331C for ; Wed, 3 Aug 2022 13:22:08 +0200 (CEST) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="UeXb2v+Z"; dkim-atps=neutral Received: from pyrite.rasen.tech (h175-177-042-159.catv02.itscom.jp [175.177.42.159]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id EDADA8B; Wed, 3 Aug 2022 13:22:06 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1659525728; bh=NqTLPL5PNY3ylhJLKvqV7VA95VGN7YleNtXY+CJLXX0=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=UeXb2v+ZcAhh9oY/M7Bo1X7kH8HYvTSQgNz6j39jGBJw2v33l/j8L5YhMpj7LyicM Ck4zyMOo/mfJP2kPjsFx5whYfbVqoGgDikvvOkwrzMUkjIJHU1p8VlFcTGrO4DJO43 +ANHZSx0fRbhL6YyDdbE7vwRI8nRE0Nt77TmPnSI= To: libcamera-devel@lists.libcamera.org Date: Wed, 3 Aug 2022 20:21:46 +0900 Message-Id: <20220803112150.3040287-6-paul.elder@ideasonboard.com> X-Mailer: git-send-email 2.30.2 In-Reply-To: <20220803112150.3040287-1-paul.elder@ideasonboard.com> References: <20220803112150.3040287-1-paul.elder@ideasonboard.com> MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH 5/9] libcamera: ipa_interface: Include flags.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: , 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" Since we will soon be adding support for Flags in IPA interfaces, the header for Flags needs to be included in ipa_interface.h. Do so. Signed-off-by: Paul Elder --- include/libcamera/ipa/ipa_interface.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/libcamera/ipa/ipa_interface.h b/include/libcamera/ipa/ipa_interface.h index 50ca0e7b..8afcfe21 100644 --- a/include/libcamera/ipa/ipa_interface.h +++ b/include/libcamera/ipa/ipa_interface.h @@ -13,6 +13,7 @@ #include #include +#include #include #include