diff options
author | Axel Lin <axel.lin@gmail.com> | 2011-05-17 15:44:09 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2011-05-18 02:55:22 -0700 |
commit | d5f33d45e4c0e306e8d16b4573891a65d9ad544f (patch) | |
tree | 16fc1c38ced6780b185887cdc5753fe2fa3110b0 /drivers/leds | |
parent | 0bf2461fdd9008290cf429e50e4f362dafab4249 (diff) | |
download | op-kernel-dev-d5f33d45e4c0e306e8d16b4573891a65d9ad544f.zip op-kernel-dev-d5f33d45e4c0e306e8d16b4573891a65d9ad544f.tar.gz |
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 <axel.lin@gmail.com>
Cc: Shreshtha Kumar SAHU <shreshthakumar.sahu@stericsson.com>
Cc: Richard Purdie <rpurdie@rpsys.net>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/leds')
-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 e7089a1..b37e618 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, |