Mauro Carvalho Chehab
2018-12-07 13:31:47 UTC
This is an automatic generated email to let you know that the following patch were queued:
Subject: media: staging: media: imx: Use of_node_name_eq for node name comparisons
Author: Rob Herring <***@kernel.org>
Date: Wed Dec 5 14:50:42 2018 -0500
Convert string compares of DT node names to use of_node_name_eq helper
instead. This removes direct access to the node name pointer.
For instances using of_node_cmp, this has the side effect of now using
case sensitive comparisons. This should not matter for any FDT based
system which this is.
Cc: Steve Longerbeam <***@gmail.com>
Cc: Philipp Zabel <***@pengutronix.de>
Cc: Greg Kroah-Hartman <***@linuxfoundation.org>
Cc: ***@driverdev.osuosl.org
Signed-off-by: Rob Herring <***@kernel.org>
Signed-off-by: Hans Verkuil <hverkuil-***@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab+***@kernel.org>
drivers/staging/media/imx/imx-media-of.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/drivers/staging/media/imx/imx-media-of.c b/drivers/staging/media/imx/imx-media-of.c
index b2e840f96c50..a01327f6e045 100644
--- a/drivers/staging/media/imx/imx-media-of.c
+++ b/drivers/staging/media/imx/imx-media-of.c
@@ -162,7 +162,7 @@ int imx_media_create_csi_of_links(struct imx_media_dev *imxmd,
fwnode_property_read_u32(fwnode, "reg", &link.remote_port);
fwnode = fwnode_get_next_parent(fwnode);
if (is_of_node(fwnode) &&
- of_node_cmp(to_of_node(fwnode)->name, "ports") == 0)
+ of_node_name_eq(to_of_node(fwnode), "ports"))
fwnode = fwnode_get_next_parent(fwnode);
link.remote_node = fwnode;
Subject: media: staging: media: imx: Use of_node_name_eq for node name comparisons
Author: Rob Herring <***@kernel.org>
Date: Wed Dec 5 14:50:42 2018 -0500
Convert string compares of DT node names to use of_node_name_eq helper
instead. This removes direct access to the node name pointer.
For instances using of_node_cmp, this has the side effect of now using
case sensitive comparisons. This should not matter for any FDT based
system which this is.
Cc: Steve Longerbeam <***@gmail.com>
Cc: Philipp Zabel <***@pengutronix.de>
Cc: Greg Kroah-Hartman <***@linuxfoundation.org>
Cc: ***@driverdev.osuosl.org
Signed-off-by: Rob Herring <***@kernel.org>
Signed-off-by: Hans Verkuil <hverkuil-***@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab+***@kernel.org>
drivers/staging/media/imx/imx-media-of.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/drivers/staging/media/imx/imx-media-of.c b/drivers/staging/media/imx/imx-media-of.c
index b2e840f96c50..a01327f6e045 100644
--- a/drivers/staging/media/imx/imx-media-of.c
+++ b/drivers/staging/media/imx/imx-media-of.c
@@ -162,7 +162,7 @@ int imx_media_create_csi_of_links(struct imx_media_dev *imxmd,
fwnode_property_read_u32(fwnode, "reg", &link.remote_port);
fwnode = fwnode_get_next_parent(fwnode);
if (is_of_node(fwnode) &&
- of_node_cmp(to_of_node(fwnode)->name, "ports") == 0)
+ of_node_name_eq(to_of_node(fwnode), "ports"))
fwnode = fwnode_get_next_parent(fwnode);
link.remote_node = fwnode;