diff options
author | Kay Sievers <kay.sievers@vrfy.org> | 2008-04-18 00:24:42 -0400 |
---|---|---|
committer | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2008-04-24 13:24:59 -0400 |
commit | d7b5247bbcfba2bc96d4b3dec9086a4f1a31363b (patch) | |
tree | a5783cceafbf50812fade605fba0b12e1b02cf0b /drivers/input/keyboard/bf54x-keys.c | |
parent | b39b04403bba4f807ee6e57ae2f4407187588fcd (diff) |
Input: add MODULE_ALIAS() to hotpluggable platform modules
Since 43cc71eed1250755986da4c0f9898f9a635cb3bf, the platform modalias
is prefixed with "platform:". Add MODULE_ALIAS() to the hotpluggable
"input" platform drivers, to re-enable auto loading.
[dbrownell@users.sourceforge.net: more drivers, registration fixes]
Signed-off-by: Kay Sievers <kay.sievers@vrfy.org>
Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
Diffstat (limited to 'drivers/input/keyboard/bf54x-keys.c')
-rw-r--r-- | drivers/input/keyboard/bf54x-keys.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/input/keyboard/bf54x-keys.c b/drivers/input/keyboard/bf54x-keys.c index 05e3494cf8b8..d87ac3322a6d 100644 --- a/drivers/input/keyboard/bf54x-keys.c +++ b/drivers/input/keyboard/bf54x-keys.c | |||
@@ -359,6 +359,7 @@ struct platform_driver bfin_kpad_device_driver = { | |||
359 | .remove = __devexit_p(bfin_kpad_remove), | 359 | .remove = __devexit_p(bfin_kpad_remove), |
360 | .driver = { | 360 | .driver = { |
361 | .name = DRV_NAME, | 361 | .name = DRV_NAME, |
362 | .owner = THIS_MODULE, | ||
362 | } | 363 | } |
363 | }; | 364 | }; |
364 | 365 | ||
@@ -378,3 +379,4 @@ module_exit(bfin_kpad_exit); | |||
378 | MODULE_LICENSE("GPL"); | 379 | MODULE_LICENSE("GPL"); |
379 | MODULE_AUTHOR("Michael Hennerich <hennerich@blackfin.uclinux.org>"); | 380 | MODULE_AUTHOR("Michael Hennerich <hennerich@blackfin.uclinux.org>"); |
380 | MODULE_DESCRIPTION("Keypad driver for BF54x Processors"); | 381 | MODULE_DESCRIPTION("Keypad driver for BF54x Processors"); |
382 | MODULE_ALIAS("platform:bf54x-keys"); | ||