From patchwork Fri Oct 11 09:22:19 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Umang Jain X-Patchwork-Id: 21586 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 60D01C3260 for ; Fri, 11 Oct 2024 09:22:39 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id BE99965371; Fri, 11 Oct 2024 11:22:37 +0200 (CEST) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="CJxQsGyU"; dkim-atps=neutral Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [213.167.242.64]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id D88EC63527 for ; Fri, 11 Oct 2024 11:22:35 +0200 (CEST) Received: from umang.jain (unknown [IPv6:2405:201:2015:f873:55d7:c02e:b2eb:ee3f]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 0B48E220; Fri, 11 Oct 2024 11:20:55 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1728638457; bh=nI20ZTv2dJ5l6flSQcSxM9bjCmtz6B0pxsvMjk2IqWk=; h=From:To:Cc:Subject:Date:From; b=CJxQsGyUZNZr0o+YEOLbkg3IKzJ9wF+X5xOl9QrVi3BC3uwr208WUIv+GkDfKLVkH O17kmjHz6fxEJ+DqqSOUyiMPGLf9qPRwBmL+ULxclij3V68PUzEBDSQ3dHVDaDR0j2 vmx4BD7oWm1wCQZtDr2QKIqUQTRwFn5wu2Dbpd14= From: Umang Jain To: libcamera-devel@lists.libcamera.org Cc: Jacopo Mondi , Kieran Bingham , Laurent Pinchart , Stefan Klug , Umang Jain Subject: [PATCH 0/3] libcamera: rkisp1: sensorConfig assorted fixes Date: Fri, 11 Oct 2024 14:52:19 +0530 Message-ID: <20241011092222.537322-1-umang.jain@ideasonboard.com> X-Mailer: git-send-email 2.45.2 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" Assorted fixes for rkisp1, mainly pertaining to sensor configuration plumbing. 1/3 fixes the passing of sensorConfig by using const reference. 2/3 fixes a logical error around sensorConfig and sensor format 3/3 fixes mis-ordering of forward declaration Umang Jain (3): libcamera: rkisp1: Use const reference for sensor configuration libcamera: rkisp1: Rectify SensorConfiguration check libcamera: rkisp1: Maintain alphabetical order of forward declarations src/libcamera/pipeline/rkisp1/rkisp1_path.cpp | 4 ++-- src/libcamera/pipeline/rkisp1/rkisp1_path.h | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) Reviewed-by: Jacopo Mondi