diff options
author | PrasannaKumar Muralidharan <prasannatsmkumar@gmail.com> | 2016-08-25 13:00:49 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2016-08-31 08:12:35 -0400 |
commit | ca75d601b5942e8cf5eed68f308be0526d0dac5d (patch) | |
tree | ca411c99f5715a5976eb942a061dfa3b2b6e841d /drivers/input | |
parent | 832c8232dd7be4977ae9fb9c7cbc4decce19a8fc (diff) |
miscdevice: Add helper macro for misc device boilerplate
Many modules call misc_register and misc_deregister in its module init
and exit methods without any additional code. This ends up being
boilerplate. This patch adds helper macro module_misc_device(), that
replaces module_init()/ module_exit() with template functions.
This patch also converts drivers to use new macro.
Change since v1:
Add device.h include in miscdevice.h as module_driver macro was not
available from other include files in some architectures.
Signed-off-by: PrasannaKumar Muralidharan <prasannatsmkumar@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/input')
-rw-r--r-- | drivers/input/misc/uinput.c | 15 |
1 files changed, 2 insertions, 13 deletions
diff --git a/drivers/input/misc/uinput.c b/drivers/input/misc/uinput.c index 65ebbd111702..92595b98e7ed 100644 --- a/drivers/input/misc/uinput.c +++ b/drivers/input/misc/uinput.c | |||
@@ -1013,23 +1013,12 @@ static struct miscdevice uinput_misc = { | |||
1013 | .minor = UINPUT_MINOR, | 1013 | .minor = UINPUT_MINOR, |
1014 | .name = UINPUT_NAME, | 1014 | .name = UINPUT_NAME, |
1015 | }; | 1015 | }; |
1016 | module_misc_device(uinput_misc); | ||
1017 | |||
1016 | MODULE_ALIAS_MISCDEV(UINPUT_MINOR); | 1018 | MODULE_ALIAS_MISCDEV(UINPUT_MINOR); |
1017 | MODULE_ALIAS("devname:" UINPUT_NAME); | 1019 | MODULE_ALIAS("devname:" UINPUT_NAME); |
1018 | 1020 | ||
1019 | static int __init uinput_init(void) | ||
1020 | { | ||
1021 | return misc_register(&uinput_misc); | ||
1022 | } | ||
1023 | |||
1024 | static void __exit uinput_exit(void) | ||
1025 | { | ||
1026 | misc_deregister(&uinput_misc); | ||
1027 | } | ||
1028 | |||
1029 | MODULE_AUTHOR("Aristeu Sergio Rozanski Filho"); | 1021 | MODULE_AUTHOR("Aristeu Sergio Rozanski Filho"); |
1030 | MODULE_DESCRIPTION("User level driver support for input subsystem"); | 1022 | MODULE_DESCRIPTION("User level driver support for input subsystem"); |
1031 | MODULE_LICENSE("GPL"); | 1023 | MODULE_LICENSE("GPL"); |
1032 | MODULE_VERSION("0.3"); | 1024 | MODULE_VERSION("0.3"); |
1033 | |||
1034 | module_init(uinput_init); | ||
1035 | module_exit(uinput_exit); | ||