diff options
author | Luis de Bethencourt <luis@debethencourt.com> | 2015-09-18 19:09:07 +0200 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2015-09-19 07:53:42 -0700 |
commit | d702ffd4d1df73b9c620af1654af42ff5b8d5c09 (patch) | |
tree | 9ac1c3aa1c0538095ac45fc236b654739e2b4ec2 /drivers/regulator | |
parent | 6ff33f3902c3b1c5d0db6b1e2c70b6d76fba357f (diff) | |
download | linux-d702ffd4d1df73b9c620af1654af42ff5b8d5c09.tar.gz linux-d702ffd4d1df73b9c620af1654af42ff5b8d5c09.tar.xz |
regulator: anatop: Fix module autoload for OF platform driver
This platform driver has a OF device ID table but the OF module
alias information is not created so module autoloading won't work.
Signed-off-by: Luis de Bethencourt <luisbg@osg.samsung.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'drivers/regulator')
-rw-r--r-- | drivers/regulator/anatop-regulator.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/regulator/anatop-regulator.c b/drivers/regulator/anatop-regulator.c index 738adfa5332b..52ea605f8130 100644 --- a/drivers/regulator/anatop-regulator.c +++ b/drivers/regulator/anatop-regulator.c @@ -318,6 +318,7 @@ static const struct of_device_id of_anatop_regulator_match_tbl[] = { { .compatible = "fsl,anatop-regulator", }, { /* end */ } }; +MODULE_DEVICE_TABLE(of, of_anatop_regulator_match_tbl); static struct platform_driver anatop_regulator_driver = { .driver = { |