From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-9.8 required=3.0 tests=DKIM_SIGNED,DKIM_VALID, DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH,MAILING_LIST_MULTI, SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED,USER_AGENT_GIT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 35D94C433DF for ; Wed, 17 Jun 2020 10:02:49 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 15E80208B3 for ; Wed, 17 Jun 2020 10:02:49 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (1024-bit key) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="pxDftpsB" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1725860AbgFQKCs (ORCPT ); Wed, 17 Jun 2020 06:02:48 -0400 Received: from perceval.ideasonboard.com ([213.167.242.64]:48120 "EHLO perceval.ideasonboard.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1725536AbgFQKCr (ORCPT ); Wed, 17 Jun 2020 06:02:47 -0400 Received: from Q.local (cpc89242-aztw30-2-0-cust488.18-1.cable.virginm.net [86.31.129.233]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 32186F9; Wed, 17 Jun 2020 12:02:44 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1592388164; bh=NnHsELelEVsUdi6wQ88jrYUx6Sq76as0FBVrg4K2cto=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=pxDftpsBkiVwvLFBwiI301WwM1j6qN1VohZV5ICB4ierq2ksylGQiugR7YSQmPuL3 MvFdEZjfZpkhmQYXde1cOBclbeb8f4uGkVIH+D0v6XJP3L4jmRyXSk4Vx4dUV/8XZs Su/41/IXqefy0RcWfDs9kY93kzHHVgSwtJ5JKeAI= From: Kieran Bingham To: Laurent Pinchart , linux-media@vger.kernel.org Cc: Tomi Valkeinen , Benoit Parrot , Kieran Bingham Subject: [PATCH] media: ti-vpe: cal: Use cal_data_get_num_csi2_phy() consistently Date: Wed, 17 Jun 2020 11:02:40 +0100 Message-Id: <20200617100240.886788-1-kieran.bingham@ideasonboard.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: linux-media-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-media@vger.kernel.org The helper cal_data_get_num_csi2_phy() is defined late in the module, leaving 3 instances of open-coded access to the num_csi2_phy value. Move the helper function directly after the 'struct cal_data' definitions and utilise the helper consistently throughout. Signed-off-by: Kieran Bingham --- drivers/media/platform/ti-vpe/cal.c | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/drivers/media/platform/ti-vpe/cal.c b/drivers/media/platform/ti-vpe/cal.c index d00dc241804b..8e99e7e58188 100644 --- a/drivers/media/platform/ti-vpe/cal.c +++ b/drivers/media/platform/ti-vpe/cal.c @@ -253,6 +253,11 @@ static const struct cal_data am654_cal_data = { .num_csi2_phy = ARRAY_SIZE(am654_cal_csi_phy), }; +static u32 cal_data_get_num_csi2_phy(struct cal_dev *cal) +{ + return cal->data->num_csi2_phy; +} + /* ------------------------------------------------------------------ * I/O Register Accessors * ------------------------------------------------------------------ @@ -267,7 +272,7 @@ void cal_quickdump_regs(struct cal_dev *cal) (__force const void *)cal->base, resource_size(cal->res), false); - for (i = 0; i < cal->data->num_csi2_phy; ++i) { + for (i = 0; i < cal_data_get_num_csi2_phy(cal); ++i) { struct cal_camerarx *phy = cal->phy[i]; cal_info(cal, "CSI2 Core %u Registers @ %pa:\n", i, @@ -559,7 +564,7 @@ static irqreturn_t cal_irq(int irq_cal, void *data) if (status & CAL_HL_IRQ_OCPO_ERR_MASK) dev_err_ratelimited(cal->dev, "OCPO ERROR\n"); - for (i = 0; i < cal->data->num_csi2_phy; ++i) { + for (i = 0; i < cal_data_get_num_csi2_phy(cal); ++i) { if (status & CAL_HL_IRQ_CIO_MASK(i)) { u32 cio_stat = cal_read(cal, CAL_CSI2_COMPLEXIO_IRQSTATUS(i)); @@ -685,7 +690,7 @@ static int cal_async_notifier_register(struct cal_dev *cal) v4l2_async_notifier_init(&cal->notifier); cal->notifier.ops = &cal_async_notifier_ops; - for (i = 0; i < cal->data->num_csi2_phy; ++i) { + for (i = 0; i < cal_data_get_num_csi2_phy(cal); ++i) { struct cal_camerarx *phy = cal->phy[i]; struct cal_v4l2_async_subdev *casd; struct v4l2_async_subdev *asd; @@ -904,11 +909,6 @@ static void cal_get_hwinfo(struct cal_dev *cal) hwinfo, CAL_HL_HWINFO_VALUE); } -static u32 cal_data_get_num_csi2_phy(struct cal_dev *cal) -{ - return cal->data->num_csi2_phy; -} - static int cal_init_camerarx_regmap(struct cal_dev *cal) { struct platform_device *pdev = to_platform_device(cal->dev); @@ -1063,7 +1063,7 @@ static int cal_probe(struct platform_device *pdev) error_media: cal_media_cleanup(cal); - for (i = 0; i < cal->data->num_csi2_phy; i++) + for (i = 0; i < cal_data_get_num_csi2_phy(cal); i++) cal_camerarx_destroy(cal->phy[i]); error_pm_runtime: @@ -1090,7 +1090,7 @@ static int cal_remove(struct platform_device *pdev) cal_media_cleanup(cal); - for (i = 0; i < cal->data->num_csi2_phy; i++) + for (i = 0; i < cal_data_get_num_csi2_phy(cal); i++) cal_camerarx_destroy(cal->phy[i]); pm_runtime_put_sync(&pdev->dev); @@ -1109,7 +1109,7 @@ static int cal_runtime_resume(struct device *dev) * Apply errata on both port everytime we (re-)enable * the clock */ - for (i = 0; i < cal->data->num_csi2_phy; i++) + for (i = 0; i < cal_data_get_num_csi2_phy(cal); i++) cal_camerarx_i913_errata(cal->phy[i]); } -- 2.25.1