From patchwork Fri Aug 15 11:33:54 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Laurent Pinchart X-Patchwork-Id: 24132 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 1AD7ABEFBE for ; Fri, 15 Aug 2025 11:34:31 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id 65DC869261; Fri, 15 Aug 2025 13:34:29 +0200 (CEST) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="rXTOHjo/"; dkim-atps=neutral Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [213.167.242.64]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id C1AAC6925D for ; Fri, 15 Aug 2025 13:34:23 +0200 (CEST) Received: from pendragon.ideasonboard.com (81-175-209-231.bb.dnainternet.fi [81.175.209.231]) by perceval.ideasonboard.com (Postfix) with UTF8SMTPSA id 6EF52605; Fri, 15 Aug 2025 13:33:28 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1755257608; bh=YxKBMPcQIEiYdrAAYSJTEHk9022hAOmoGqLHiRAhLC8=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=rXTOHjo/3zmuk85RA+cc+ZE3BAq0dq/1/JgVv0p4whdsDZTVdnGiWzDk2L/h7ST66 LT51LNUERiLs1I3IOIKk8YnIe0dVTCX8MW3ZUUvqN/EhGAyY4cwjGB1JLfZIJZ3++h 3y6c6fOyeOjQSVV8HYa7mJmjxFO4y7ymokZMRDEM= From: Laurent Pinchart To: libcamera-devel@lists.libcamera.org Cc: =?utf-8?q?Daniel_R=C3=A1kos?= Subject: [PATCH v2 2/8] pipeline: ipu3: Drop unneeded forward declarations Date: Fri, 15 Aug 2025 14:33:54 +0300 Message-ID: <20250815113400.20623-3-laurent.pinchart@ideasonboard.com> X-Mailer: git-send-email 2.49.1 In-Reply-To: <20250815113400.20623-1-laurent.pinchart@ideasonboard.com> References: <20250815113400.20623-1-laurent.pinchart@ideasonboard.com> MIME-Version: 1.0 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" Multiple classes are forward-declared in frames.h, without being used in that header file. Drop the unneeded forward declarations. Signed-off-by: Laurent Pinchart Reviewed-by: Barnabás Pőcze Reviewed-by: Jacopo Mondi --- src/libcamera/pipeline/ipu3/frames.h | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/libcamera/pipeline/ipu3/frames.h b/src/libcamera/pipeline/ipu3/frames.h index 1cabd0e64d6e..36a23b9b198e 100644 --- a/src/libcamera/pipeline/ipu3/frames.h +++ b/src/libcamera/pipeline/ipu3/frames.h @@ -19,11 +19,7 @@ namespace libcamera { class FrameBuffer; -class IPAProxy; -class PipelineHandler; class Request; -class V4L2VideoDevice; -struct IPABuffer; class IPU3Frames {