[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <1326372302.5729.1.camel@phoenix>
Date: Thu, 12 Jan 2012 20:45:02 +0800
From: Axel Lin <axel.lin@...il.com>
To: linux-kernel@...r.kernel.org
Cc: "Milo(Woogyom) Kim" <milo.kim@...com>,
Daniel Jeong <daniel.jeong@...com>,
Anton Vorontsov <cbouatmailru@...il.com>
Subject: [PATCH] power_supply: Add MODULE_DEVICE_TABLE for lp8727 charger
Add MODULE_DEVICE_TABLE to setup modalias for lp8727.
The i2c_device_id table is supposed to be zero-terminated.
Thus add a missing terminate entry for lp8727_ids.
Signed-off-by: Axel Lin <axel.lin@...il.com>
---
drivers/power/lp8727_charger.c | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/drivers/power/lp8727_charger.c b/drivers/power/lp8727_charger.c
index b15b575..8e901c9 100644
--- a/drivers/power/lp8727_charger.c
+++ b/drivers/power/lp8727_charger.c
@@ -464,7 +464,9 @@ static int __devexit lp8727_remove(struct i2c_client *cl)
static const struct i2c_device_id lp8727_ids[] = {
{"lp8727", 0},
+ { },
};
+MODULE_DEVICE_TABLE(i2c, lp8727_ids);
static struct i2c_driver lp8727_driver = {
.driver = {
--
1.7.5.4
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists