diff options
author | Luis de Bethencourt <luis@debethencourt.com> | 2015-09-17 20:16:32 +0200 |
---|---|---|
committer | Lee Jones <lee.jones@linaro.org> | 2015-10-26 14:49:01 +0000 |
commit | 01bd09f040698ffbe45e4b8ed7a4399148d2cf9b (patch) | |
tree | 545f4440630f80e04f2c564a4829087ea1dad260 /drivers/mfd/max8997.c | |
parent | 544507362d2d1bd3514358df6c6df573f023afd7 (diff) | |
download | blackbird-obmc-linux-01bd09f040698ffbe45e4b8ed7a4399148d2cf9b.tar.gz blackbird-obmc-linux-01bd09f040698ffbe45e4b8ed7a4399148d2cf9b.zip |
mfd: max8997: 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: Lee Jones <lee.jones@linaro.org>
Diffstat (limited to 'drivers/mfd/max8997.c')
-rw-r--r-- | drivers/mfd/max8997.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/mfd/max8997.c b/drivers/mfd/max8997.c index d3cfa9cf5c8f..156ed6f92aa3 100644 --- a/drivers/mfd/max8997.c +++ b/drivers/mfd/max8997.c @@ -55,6 +55,7 @@ static const struct of_device_id max8997_pmic_dt_match[] = { { .compatible = "maxim,max8997-pmic", .data = (void *)TYPE_MAX8997 }, {}, }; +MODULE_DEVICE_TABLE(of, max8997_pmic_dt_match); #endif int max8997_read_reg(struct i2c_client *i2c, u8 reg, u8 *dest) |