[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1559577023-558-43-git-send-email-suzuki.poulose@arm.com>
Date: Mon, 3 Jun 2019 16:50:08 +0100
From: Suzuki K Poulose <suzuki.poulose@....com>
To: linux-kernel@...r.kernel.org
Cc: gregkh@...uxfoundation.org, rafael@...nel.org,
suzuki.poulose@....com, Liam Girdwood <lgirdwood@...il.com>,
Mark Brown <broonie@...nel.org>
Subject: [RFC PATCH 42/57] drivers: regulator: Use class_find_device_by_of_node helper
Use the generic helper to find a device matching the of_node.
Cc: Liam Girdwood <lgirdwood@...il.com>
Cc: Mark Brown <broonie@...nel.org>
Signed-off-by: Suzuki K Poulose <suzuki.poulose@....com>
---
drivers/regulator/of_regulator.c | 7 +------
1 file changed, 1 insertion(+), 6 deletions(-)
diff --git a/drivers/regulator/of_regulator.c b/drivers/regulator/of_regulator.c
index 0ead116..1485f6e 100644
--- a/drivers/regulator/of_regulator.c
+++ b/drivers/regulator/of_regulator.c
@@ -442,16 +442,11 @@ struct regulator_init_data *regulator_of_get_init_data(struct device *dev,
return NULL;
}
-static int of_node_match(struct device *dev, const void *data)
-{
- return dev->of_node == data;
-}
-
struct regulator_dev *of_find_regulator_by_node(struct device_node *np)
{
struct device *dev;
- dev = class_find_device(®ulator_class, NULL, np, of_node_match);
+ dev = class_find_device_by_of_node(®ulator_class, NULL, np);
return dev ? dev_to_rdev(dev) : NULL;
}
--
2.7.4
Powered by blists - more mailing lists