Commit a190622a authored by Yong Wu's avatar Yong Wu Committed by Greg Kroah-Hartman
Browse files

drm/komeda: Make use of the helper component_compare_of



Use the common compare helper from component.

Cc: "James (Qian) Wang" <james.qian.wang@arm.com>
Cc: Liviu Dudau <liviu.dudau@arm.com>
Cc: Mihail Atanassov <mihail.atanassov@arm.com>
Cc: Brian Starkey <brian.starkey@arm.com>
Signed-off-by: default avatarYong Wu <yong.wu@mediatek.com>
Link: https://lore.kernel.org/r/20220214060819.7334-3-yong.wu@mediatek.com


Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 2502960f
Loading
Loading
Loading
Loading
+1 −6
Original line number Diff line number Diff line
@@ -92,11 +92,6 @@ static const struct component_master_ops komeda_master_ops = {
	.unbind	= komeda_unbind,
};

static int compare_of(struct device *dev, void *data)
{
	return dev->of_node == data;
}

static void komeda_add_slave(struct device *master,
			     struct component_match **match,
			     struct device_node *np,
@@ -106,7 +101,7 @@ static void komeda_add_slave(struct device *master,

	remote = of_graph_get_remote_node(np, port, endpoint);
	if (remote) {
		drm_of_component_match_add(master, match, compare_of, remote);
		drm_of_component_match_add(master, match, component_compare_of, remote);
		of_node_put(remote);
	}
}