From patchwork Mon Mar 31 09:31:24 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: shao.mingyin@zte.com.cn X-Patchwork-Id: 14033373 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id DE1B9C3600B for ; Mon, 31 Mar 2025 09:31:57 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 3FB8910E10B; Mon, 31 Mar 2025 09:31:57 +0000 (UTC) X-Greylist: delayed 360 seconds by postgrey-1.36 at gabe; Mon, 31 Mar 2025 09:31:56 UTC Received: from mxct.zte.com.cn (mxct.zte.com.cn [183.62.165.209]) by gabe.freedesktop.org (Postfix) with ESMTPS id 4AD7410E10B for ; Mon, 31 Mar 2025 09:31:56 +0000 (UTC) Received: from mse-fl1.zte.com.cn (unknown [10.5.228.132]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mxct.zte.com.cn (FangMail) with ESMTPS id 4ZR5Vv1Hrfz51SXr; Mon, 31 Mar 2025 17:31:51 +0800 (CST) Received: from xaxapp02.zte.com.cn ([10.88.97.241]) by mse-fl1.zte.com.cn with SMTP id 52V9VLLh081624; Mon, 31 Mar 2025 17:31:21 +0800 (+08) (envelope-from shao.mingyin@zte.com.cn) Received: from mapi (xaxapp01[null]) by mapi (Zmail) with MAPI id mid32; Mon, 31 Mar 2025 17:31:24 +0800 (CST) Date: Mon, 31 Mar 2025 17:31:24 +0800 (CST) X-Zmail-TransId: 2af967ea60ecffffffffa1c-480dd X-Mailer: Zmail v1.0 Message-ID: <20250331173124559aCNI8BfX0ay0U5wryryME@zte.com.cn> In-Reply-To: <20250331172534353mkMR1nv-dsjFTZTXCPY0a@zte.com.cn> References: 20250331172534353mkMR1nv-dsjFTZTXCPY0a@zte.com.cn Mime-Version: 1.0 From: To: , , Cc: , , , , , , , , , , , , , , , , , Subject: =?utf-8?q?=5BPATCH_3/4=5D_drm=3A_malidp=3A_Replace_custom_compare?= =?utf-8?q?=5Fdev_with=C2=A0component=5Fcompare=5Fof?= X-MAIL: mse-fl1.zte.com.cn 52V9VLLh081624 X-Fangmail-Anti-Spam-Filtered: true X-Fangmail-MID-QID: 67EA6107.000/4ZR5Vv1Hrfz51SXr X-BeenThere: dri-devel@lists.freedesktop.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Direct Rendering Infrastructure - Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" From: Tang Dongxing Remove the custom device comparison function compare_dev and replace it with the existing kernel helper component_compare_of Signed-off-by: Tang Dongxing Signed-off-by: Shao Mingyin Reviewed-by: Liviu Dudau --- drivers/gpu/drm/arm/malidp_drv.c | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/drivers/gpu/drm/arm/malidp_drv.c b/drivers/gpu/drm/arm/malidp_drv.c index e083021e9e99..e2e6fd1f64b0 100644 --- a/drivers/gpu/drm/arm/malidp_drv.c +++ b/drivers/gpu/drm/arm/malidp_drv.c @@ -910,13 +910,6 @@ static const struct component_master_ops malidp_master_ops = { .unbind = malidp_unbind, }; -static int malidp_compare_dev(struct device *dev, void *data) -{ - struct device_node *np = data; - - return dev->of_node == np; -} - static int malidp_platform_probe(struct platform_device *pdev) { struct device_node *port; @@ -930,7 +923,7 @@ static int malidp_platform_probe(struct platform_device *pdev) if (!port) return -ENODEV; - drm_of_component_match_add(&pdev->dev, &match, malidp_compare_dev, + drm_of_component_match_add(&pdev->dev, &match, component_compare_of, port); of_node_put(port); return component_master_add_with_match(&pdev->dev, &malidp_master_ops,