diff options
author | Rob Herring <robh@kernel.org> | 2018-12-05 22:50:31 +0300 |
---|---|---|
committer | Lee Jones <lee.jones@linaro.org> | 2019-01-03 11:32:42 +0300 |
commit | 38df91cc0b82d053234accf4429eafd2f5a4d401 (patch) | |
tree | 61cce6604edfdf21c867e61c56cdddfac8ec52d7 /drivers/mfd/max77620.c | |
parent | 18e294ddafaeb80a1e2e10c9bd750a6cb8388d5b (diff) | |
download | linux-38df91cc0b82d053234accf4429eafd2f5a4d401.tar.xz |
mfd: Use of_node_name_eq() for node name comparisons
Convert string compares of DT node names to use of_node_name_eq() helper
instead. This removes direct access to the node name pointer.
Signed-off-by: Rob Herring <robh@kernel.org>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
Diffstat (limited to 'drivers/mfd/max77620.c')
-rw-r--r-- | drivers/mfd/max77620.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mfd/max77620.c b/drivers/mfd/max77620.c index d8217366ed36..d8ddd1a6f304 100644 --- a/drivers/mfd/max77620.c +++ b/drivers/mfd/max77620.c @@ -280,7 +280,7 @@ static int max77620_config_fps(struct max77620_chip *chip, for (fps_id = 0; fps_id < MAX77620_FPS_COUNT; fps_id++) { sprintf(fps_name, "fps%d", fps_id); - if (!strcmp(fps_np->name, fps_name)) + if (of_node_name_eq(fps_np, fps_name)) break; } |