diff mbox series

[v5,6/8] regulator: hi6421: Describe consumed platform device

Message ID 20170607070606.8889-7-guodong.xu@linaro.org
State Superseded
Headers show
Series MFD: add driver for HiSilicon Hi6421v530 PMIC | expand

Commit Message

Guodong Xu June 7, 2017, 7:06 a.m. UTC
The hi6421-regulator driver consumes a similarly named platform device.
Adding that to the module device table, allows modprobe to locate this
driver once the device is created.

Cc: Jeremy Linton <lintonrjeremy@gmail.com>
Cc: Mark Brown <broonie@kernel.org>
Signed-off-by: Guodong Xu <guodong.xu@linaro.org>

---
 drivers/regulator/hi6421-regulator.c | 7 +++++++
 1 file changed, 7 insertions(+)

-- 
2.10.2

--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Comments

Guodong Xu June 8, 2017, 1:01 a.m. UTC | #1
On Thu, Jun 8, 2017 at 3:25 AM, Mark Brown <broonie@kernel.org> wrote:
> On Wed, Jun 07, 2017 at 03:06:04PM +0800, Guodong Xu wrote:

>> The hi6421-regulator driver consumes a similarly named platform device.

>> Adding that to the module device table, allows modprobe to locate this

>> driver once the device is created.

>

> You need this in hi6421v530 too.


I will add that in v6.
Thanks, Mark.

-Guodong
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff mbox series

Patch

diff --git a/drivers/regulator/hi6421-regulator.c b/drivers/regulator/hi6421-regulator.c
index 62c5f54..259c3a8 100644
--- a/drivers/regulator/hi6421-regulator.c
+++ b/drivers/regulator/hi6421-regulator.c
@@ -621,7 +621,14 @@  static int hi6421_regulator_probe(struct platform_device *pdev)
 	return 0;
 }
 
+static const struct platform_device_id hi6421_regulator_table[] = {
+	{ .name = "hi6421-regulator" },
+	{},
+};
+MODULE_DEVICE_TABLE(platform, hi6421_regulator_table);
+
 static struct platform_driver hi6421_regulator_driver = {
+	.id_table = hi6421_regulator_table,
 	.driver = {
 		.name	= "hi6421-regulator",
 	},