The device table is required to load modules based on modaliases.
Signed-off-by: Axel Lin <[email protected]>
Cc: MyungJoo Ham <[email protected]>
Cc: Kyungmin Park <[email protected]>
Cc: Marek Szyprowski <[email protected]>
---
drivers/regulator/max8997.c | 1 +
drivers/regulator/max8998.c | 1 +
2 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/drivers/regulator/max8997.c b/drivers/regulator/max8997.c
index 01ef7e9..77e0cfb 100644
--- a/drivers/regulator/max8997.c
+++ b/drivers/regulator/max8997.c
@@ -1185,6 +1185,7 @@ static const struct platform_device_id max8997_pmic_id[] = {
{ "max8997-pmic", 0},
{ },
};
+MODULE_DEVICE_TABLE(platform, max8997_pmic_id);
static struct platform_driver max8997_pmic_driver = {
.driver = {
diff --git a/drivers/regulator/max8998.c b/drivers/regulator/max8998.c
index 0ec49ca..4341026 100644
--- a/drivers/regulator/max8998.c
+++ b/drivers/regulator/max8998.c
@@ -887,6 +887,7 @@ static const struct platform_device_id max8998_pmic_id[] = {
{ "lp3974-pmic", TYPE_LP3974 },
{ }
};
+MODULE_DEVICE_TABLE(platform, max8998_pmic_id);
static struct platform_driver max8998_pmic_driver = {
.driver = {
--
1.7.1
On Sat, Mar 26, 2011 at 11:28:42PM +0800, Axel Lin wrote:
> The device table is required to load modules based on modaliases.
>
> Signed-off-by: Axel Lin <[email protected]>
Acked-by: Mark Brown <[email protected]>
On Sat, 2011-03-26 at 23:28 +0800, Axel Lin wrote:
> The device table is required to load modules based on modaliases.
>
> Signed-off-by: Axel Lin <[email protected]>
> Cc: MyungJoo Ham <[email protected]>
> Cc: Kyungmin Park <[email protected]>
> Cc: Marek Szyprowski <[email protected]>
>
> ---
Applied.
Thanks
Liam