diff options
author | Axel Lin <axel.lin@gmail.com> | 2011-03-01 04:24:34 -0500 |
---|---|---|
committer | Anton Vorontsov <cbouatmailru@gmail.com> | 2011-03-01 14:28:25 -0500 |
commit | dcbc9169ed3ce7cd12328fec8b9eb9f7b91ce130 (patch) | |
tree | c163be4a04c7e211a9926b837da8f6f00d329611 /drivers/power/z2_battery.c | |
parent | 84ab16f54bbde67c8c2aabc36b034c91044935cb (diff) |
z2_battery: Add MODULE_DEVICE_TABLE
The device table is required to load modules based on modaliases.
After adding the MODULE_DEVICE_TABLE, below entry will be added to
modules.alias:
alias i2c:aer915 z2_battery
Signed-off-by: Axel Lin <axel.lin@gmail.com>
Signed-off-by: Anton Vorontsov <cbouatmailru@gmail.com>
Diffstat (limited to 'drivers/power/z2_battery.c')
-rw-r--r-- | drivers/power/z2_battery.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/power/z2_battery.c b/drivers/power/z2_battery.c index e5ed52d71937..81304c0bb9d3 100644 --- a/drivers/power/z2_battery.c +++ b/drivers/power/z2_battery.c | |||
@@ -293,6 +293,7 @@ static const struct i2c_device_id z2_batt_id[] = { | |||
293 | { "aer915", 0 }, | 293 | { "aer915", 0 }, |
294 | { } | 294 | { } |
295 | }; | 295 | }; |
296 | MODULE_DEVICE_TABLE(i2c, z2_batt_id); | ||
296 | 297 | ||
297 | static struct i2c_driver z2_batt_driver = { | 298 | static struct i2c_driver z2_batt_driver = { |
298 | .driver = { | 299 | .driver = { |