aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuodong Xu <guodong.xu@linaro.org>2017-06-14 11:11:06 -0400
committerMark Brown <broonie@kernel.org>2017-06-14 13:27:20 -0400
commitded7b2aeefaff4e9d52a935e13ff1f1970b7cfda (patch)
treec21dd155f47394bccfc32e782d96b411ed9b84ae
parent5c7024ae7e6787541dd737ba1eba828d5fc74d58 (diff)
regulator: hi6421v530: Describe consumed platform device
The hi6421v530-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. Signed-off-by: Guodong Xu <guodong.xu@linaro.org> Signed-off-by: Mark Brown <broonie@kernel.org>
-rw-r--r--drivers/regulator/hi6421v530-regulator.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/drivers/regulator/hi6421v530-regulator.c b/drivers/regulator/hi6421v530-regulator.c
index 46bbba96307f..c09bc71538a5 100644
--- a/drivers/regulator/hi6421v530-regulator.c
+++ b/drivers/regulator/hi6421v530-regulator.c
@@ -194,7 +194,14 @@ static int hi6421v530_regulator_probe(struct platform_device *pdev)
194 return 0; 194 return 0;
195} 195}
196 196
197static const struct platform_device_id hi6421v530_regulator_table[] = {
198 { .name = "hi6421v530-regulator" },
199 {},
200};
201MODULE_DEVICE_TABLE(platform, hi6421v530_regulator_table);
202
197static struct platform_driver hi6421v530_regulator_driver = { 203static struct platform_driver hi6421v530_regulator_driver = {
204 .id_table = hi6421v530_regulator_table,
198 .driver = { 205 .driver = {
199 .name = "hi6421v530-regulator", 206 .name = "hi6421v530-regulator",
200 }, 207 },