diff options
author | Ben Dooks <[email protected]> | 2008-08-05 13:01:24 -0700 |
---|---|---|
committer | Linus Torvalds <[email protected]> | 2008-08-05 14:33:48 -0700 |
commit | 8cd6819842b79953c61250c719f61e01e51dd8cd (patch) | |
tree | 7731c8afdc041138a4b2b919865a431945583dcd | |
parent | 14563a4ec450f35c70fbe5f6ac5199e9d5a0edc5 (diff) |
backlight: add MODULE_ALIAS() to pwm_backlight driver
Add the missing MODULE_ALIAS() to the pwm_backlight driver.
Cc: Russell King <[email protected]>
Signed-off-by: Ben Dooks <[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/video/backlight/pwm_bl.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/video/backlight/pwm_bl.c b/drivers/video/backlight/pwm_bl.c index 441e5a707d37..ea07258565f0 100644 --- a/drivers/video/backlight/pwm_bl.c +++ b/drivers/video/backlight/pwm_bl.c @@ -187,3 +187,5 @@ module_exit(pwm_backlight_exit); MODULE_DESCRIPTION("PWM based Backlight Driver"); MODULE_LICENSE("GPL"); +MODULE_ALIAS("platform:pwm-backlight"); + |