From patchwork Mon Mar 31 09:28:45 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: 14033371 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 5BBD3C3600B for ; Mon, 31 Mar 2025 09:28:57 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id C8D3A10E051; Mon, 31 Mar 2025 09:28:56 +0000 (UTC) Received: from mxhk.zte.com.cn (mxhk.zte.com.cn [63.216.63.40]) by gabe.freedesktop.org (Postfix) with ESMTPS id 82CC910E051 for ; Mon, 31 Mar 2025 09:28:55 +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 mxhk.zte.com.cn (FangMail) with ESMTPS id 4ZR5RM6VpRz8RV7S; Mon, 31 Mar 2025 17:28:47 +0800 (CST) Received: from xaxapp05.zte.com.cn ([10.99.98.109]) by mse-fl1.zte.com.cn with SMTP id 52V9SgnN078747; Mon, 31 Mar 2025 17:28:42 +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:28:45 +0800 (CST) Date: Mon, 31 Mar 2025 17:28:45 +0800 (CST) X-Zmail-TransId: 2af967ea604d2f7-429bd X-Mailer: Zmail v1.0 Message-ID: <202503311728456105AyS6yPwkx8Ccwv6GviVL@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_1/4=5D_drm=3A_adp=3A_Replace_custom_compare=5Fde?= =?utf-8?q?v_with=C2=A0component=5Fcompare=5Fof?= X-MAIL: mse-fl1.zte.com.cn 52V9SgnN078747 X-Fangmail-Anti-Spam-Filtered: true X-Fangmail-MID-QID: 67EA604F.002/4ZR5RM6VpRz8RV7S 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 --- drivers/gpu/drm/adp/adp_drv.c | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/drivers/gpu/drm/adp/adp_drv.c b/drivers/gpu/drm/adp/adp_drv.c index c98c647f981d..32350c1a5c1f 100644 --- a/drivers/gpu/drm/adp/adp_drv.c +++ b/drivers/gpu/drm/adp/adp_drv.c @@ -551,11 +551,6 @@ static const struct component_master_ops adp_master_ops = { .unbind = adp_drm_unbind, }; -static int compare_dev(struct device *dev, void *data) -{ - return dev->of_node == data; -} - static int adp_probe(struct platform_device *pdev) { struct device_node *port; @@ -579,7 +574,7 @@ static int adp_probe(struct platform_device *pdev) if (!port) return -ENODEV; - drm_of_component_match_add(&pdev->dev, &match, compare_dev, port); + drm_of_component_match_add(&pdev->dev, &match, component_compare_of, port); of_node_put(port); return component_master_add_with_match(&pdev->dev, &adp_master_ops, match);