diff options
author | Mika Westerberg <mika.westerberg@linux.intel.com> | 2012-09-07 03:31:44 -0400 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2012-09-21 13:40:12 -0400 |
commit | f06efccf4d4162db957983bc8a66073ec4735a38 (patch) | |
tree | 53ff39e57b6712790208242afc377095dfbcf758 /drivers/input/misc | |
parent | 20420500cb553793f64c885a51024686e74b9819 (diff) |
Input: atlas_btns - convert to module_acpi_driver()
Signed-off-by: Mika Westerberg <mika.westerberg@linux.intel.com>
Acked-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'drivers/input/misc')
-rw-r--r-- | drivers/input/misc/atlas_btns.c | 17 |
1 files changed, 1 insertions, 16 deletions
diff --git a/drivers/input/misc/atlas_btns.c b/drivers/input/misc/atlas_btns.c index 601f7372f9c4..26f13131639a 100644 --- a/drivers/input/misc/atlas_btns.c +++ b/drivers/input/misc/atlas_btns.c | |||
@@ -151,22 +151,7 @@ static struct acpi_driver atlas_acpi_driver = { | |||
151 | .remove = atlas_acpi_button_remove, | 151 | .remove = atlas_acpi_button_remove, |
152 | }, | 152 | }, |
153 | }; | 153 | }; |
154 | 154 | module_acpi_driver(atlas_acpi_driver); | |
155 | static int __init atlas_acpi_init(void) | ||
156 | { | ||
157 | if (acpi_disabled) | ||
158 | return -ENODEV; | ||
159 | |||
160 | return acpi_bus_register_driver(&atlas_acpi_driver); | ||
161 | } | ||
162 | |||
163 | static void __exit atlas_acpi_exit(void) | ||
164 | { | ||
165 | acpi_bus_unregister_driver(&atlas_acpi_driver); | ||
166 | } | ||
167 | |||
168 | module_init(atlas_acpi_init); | ||
169 | module_exit(atlas_acpi_exit); | ||
170 | 155 | ||
171 | MODULE_AUTHOR("Jaya Kumar"); | 156 | MODULE_AUTHOR("Jaya Kumar"); |
172 | MODULE_LICENSE("GPL"); | 157 | MODULE_LICENSE("GPL"); |