From patchwork Thu Jul 15 11:28:45 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kieran Bingham X-Patchwork-Id: 12959 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 4D9BEC3226 for ; Thu, 15 Jul 2021 11:28:53 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id 6EE4D68523; Thu, 15 Jul 2021 13:28:52 +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="q2EJ4uPV"; dkim-atps=neutral Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [213.167.242.64]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id F3C3A6059F for ; Thu, 15 Jul 2021 13:28:49 +0200 (CEST) Received: from Monstersaurus.local (cpc89244-aztw30-2-0-cust3082.18-1.cable.virginm.net [86.31.172.11]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 79958340; Thu, 15 Jul 2021 13:28:49 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1626348529; bh=9WDhET0HguZaXAjQ94MWI5/W7z46wOIVCqWL9HKgTUQ=; h=From:To:Cc:Subject:Date:From; b=q2EJ4uPVxI6rVHla3OH1SLnXvR5ETvGBKmr6M8nYGBB6/qbrKDLXToGY4SQLfem1f 4SNIpzI52xFLvfONnxWZcX+YNT5dlk1yWpaw+oc5K5rWzIb9O2jsbgCuGmxKc4x0qm AOB8kGb6XS4aSN5g4OHILm6vrJiIi1DFfZAaKWlM= From: Kieran Bingham To: Umang Jain , libcamera devel Date: Thu, 15 Jul 2021 12:28:45 +0100 Message-Id: <20210715112845.4049846-1-kieran.bingham@ideasonboard.com> X-Mailer: git-send-email 2.30.2 MIME-Version: 1.0 Subject: [libcamera-devel] [IPU3-IPA][PATCH] ipu3: Use updated buffer.h header 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" In libcamera commit 6a31a8d8e274 ("libcamera: buffer: Rename buffer.h to framebuffer.h"), the public header buffer.h was renamed. Update the usage accordingly. Signed-off-by: Kieran Bingham Reviewed-by: Laurent Pinchart Reviewed-by: Jean-Michel Hautbois --- include/libcamera-helpers/mapped_buffer.h | 2 +- ipu3.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/libcamera-helpers/mapped_buffer.h b/include/libcamera-helpers/mapped_buffer.h index b34a70c5f2c5..6cfc57217d75 100644 --- a/include/libcamera-helpers/mapped_buffer.h +++ b/include/libcamera-helpers/mapped_buffer.h @@ -13,7 +13,7 @@ #include #include -#include +#include namespace libcamera { diff --git a/ipu3.cpp b/ipu3.cpp index e0e87a8d70ec..651e0bb5efc1 100644 --- a/ipu3.cpp +++ b/ipu3.cpp @@ -11,8 +11,8 @@ #include #include -#include #include +#include #include #include #include