summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLuis de Bethencourt <luis@debethencourt.com>2015-09-17 20:16:32 +0200
committerLee Jones <lee.jones@linaro.org>2015-10-26 14:49:01 +0000
commit01bd09f040698ffbe45e4b8ed7a4399148d2cf9b (patch)
tree545f4440630f80e04f2c564a4829087ea1dad260
parent544507362d2d1bd3514358df6c6df573f023afd7 (diff)
downloadlinux-0-day-01bd09f040698ffbe45e4b8ed7a4399148d2cf9b.tar.gz
linux-0-day-01bd09f040698ffbe45e4b8ed7a4399148d2cf9b.tar.xz
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>
-rw-r--r--drivers/mfd/max8997.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/mfd/max8997.c b/drivers/mfd/max8997.c
index d3cfa9cf5c8f9..156ed6f92aa32 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)