drm/omap: dss: Make use of the helper component_compare_dev
authorYong Wu <yong.wu@mediatek.com>
Mon, 14 Feb 2022 06:08:12 +0000 (14:08 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 25 Feb 2022 11:16:13 +0000 (12:16 +0100)
Use the common compare helper from component.

Cc: Tomi Valkeinen <tomba@kernel.org>
Cc: Cai Huoqing <caihuoqing@baidu.com>
Cc: Arnd Bergmann <arnd@arndb.de>
Cc: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: Yong Wu <yong.wu@mediatek.com>
Link: https://lore.kernel.org/r/20220214060819.7334-17-yong.wu@mediatek.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/gpu/drm/omapdrm/dss/dss.c

index 69b3e15..0399f33 100644 (file)
@@ -1344,12 +1344,6 @@ static const struct component_master_ops dss_component_ops = {
        .unbind = dss_unbind,
 };
 
-static int dss_component_compare(struct device *dev, void *data)
-{
-       struct device *child = data;
-       return dev == child;
-}
-
 struct dss_component_match_data {
        struct device *dev;
        struct component_match **match;
@@ -1379,7 +1373,7 @@ static int dss_add_child_component(struct device *dev, void *data)
                return device_for_each_child(dev, cmatch,
                                             dss_add_child_component);
 
-       component_match_add(cmatch->dev, match, dss_component_compare, dev);
+       component_match_add(cmatch->dev, match, component_compare_dev, dev);
 
        return 0;
 }