diff options
author | Axel Lin <[email protected]> | 2011-05-17 15:44:09 -0700 |
---|---|---|
committer | Linus Torvalds <[email protected]> | 2011-05-18 02:55:22 -0700 |
commit | d5f33d45e4c0e306e8d16b4573891a65d9ad544f (patch) | |
tree | 16fc1c38ced6780b185887cdc5753fe2fa3110b0 | |
parent | 0bf2461fdd9008290cf429e50e4f362dafab4249 (diff) |
drivers/leds/leds-lm3530.c: add MODULE_DEVICE_TABLE
Adding the necessary MODULE_DEVICE_TABLE() information allows the driver
to be automatically loaded by udev.
Signed-off-by: Axel Lin <[email protected]>
Cc: Shreshtha Kumar SAHU <[email protected]>
Cc: Richard Purdie <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
-rw-r--r-- | drivers/leds/leds-lm3530.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/leds/leds-lm3530.c b/drivers/leds/leds-lm3530.c index e7089a1f6cb6..b37e6186d0fa 100644 --- a/drivers/leds/leds-lm3530.c +++ b/drivers/leds/leds-lm3530.c @@ -349,6 +349,7 @@ static const struct i2c_device_id lm3530_id[] = { {LM3530_NAME, 0}, {} }; +MODULE_DEVICE_TABLE(i2c, lm3530_id); static struct i2c_driver lm3530_i2c_driver = { .probe = lm3530_probe, |