diff options
Diffstat (limited to 'drivers/input/misc/atlas_btns.c')
| -rw-r--r-- | drivers/input/misc/atlas_btns.c | 38 |
1 files changed, 15 insertions, 23 deletions
diff --git a/drivers/input/misc/atlas_btns.c b/drivers/input/misc/atlas_btns.c index dfaa9a045ed..601f7372f9c 100644 --- a/drivers/input/misc/atlas_btns.c +++ b/drivers/input/misc/atlas_btns.c | |||
| @@ -21,6 +21,8 @@ | |||
| 21 | * | 21 | * |
| 22 | */ | 22 | */ |
| 23 | 23 | ||
| 24 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt | ||
| 25 | |||
| 24 | #include <linux/kernel.h> | 26 | #include <linux/kernel.h> |
| 25 | #include <linux/module.h> | 27 | #include <linux/module.h> |
| 26 | #include <linux/init.h> | 28 | #include <linux/init.h> |
| @@ -60,12 +62,11 @@ static acpi_status acpi_atlas_button_handler(u32 function, | |||
| 60 | input_report_key(input_dev, atlas_keymap[code], key_down); | 62 | input_report_key(input_dev, atlas_keymap[code], key_down); |
| 61 | input_sync(input_dev); | 63 | input_sync(input_dev); |
| 62 | 64 | ||
| 63 | status = 0; | 65 | status = AE_OK; |
| 64 | } else { | 66 | } else { |
| 65 | printk(KERN_WARNING "atlas: shrugged on unexpected function" | 67 | pr_warn("shrugged on unexpected function: function=%x,address=%lx,value=%x\n", |
| 66 | ":function=%x,address=%lx,value=%x\n", | ||
| 67 | function, (unsigned long)address, (u32)*value); | 68 | function, (unsigned long)address, (u32)*value); |
| 68 | status = -EINVAL; | 69 | status = AE_BAD_PARAMETER; |
| 69 | } | 70 | } |
| 70 | 71 | ||
| 71 | return status; | 72 | return status; |
| @@ -79,7 +80,7 @@ static int atlas_acpi_button_add(struct acpi_device *device) | |||
| 79 | 80 | ||
| 80 | input_dev = input_allocate_device(); | 81 | input_dev = input_allocate_device(); |
| 81 | if (!input_dev) { | 82 | if (!input_dev) { |
| 82 | printk(KERN_ERR "atlas: unable to allocate input device\n"); | 83 | pr_err("unable to allocate input device\n"); |
| 83 | return -ENOMEM; | 84 | return -ENOMEM; |
| 84 | } | 85 | } |
| 85 | 86 | ||
| @@ -102,7 +103,7 @@ static int atlas_acpi_button_add(struct acpi_device *device) | |||
| 102 | 103 | ||
| 103 | err = input_register_device(input_dev); | 104 | err = input_register_device(input_dev); |
| 104 | if (err) { | 105 | if (err) { |
| 105 | printk(KERN_ERR "atlas: couldn't register input device\n"); | 106 | pr_err("couldn't register input device\n"); |
| 106 | input_free_device(input_dev); | 107 | input_free_device(input_dev); |
| 107 | return err; | 108 | return err; |
| 108 | } | 109 | } |
| @@ -112,12 +113,12 @@ static int atlas_acpi_button_add(struct acpi_device *device) | |||
| 112 | 0x81, &acpi_atlas_button_handler, | 113 | 0x81, &acpi_atlas_button_handler, |
| 113 | &acpi_atlas_button_setup, device); | 114 | &acpi_atlas_button_setup, device); |
| 114 | if (ACPI_FAILURE(status)) { | 115 | if (ACPI_FAILURE(status)) { |
| 115 | printk(KERN_ERR "Atlas: Error installing addr spc handler\n"); | 116 | pr_err("error installing addr spc handler\n"); |
| 116 | input_unregister_device(input_dev); | 117 | input_unregister_device(input_dev); |
| 117 | status = -EINVAL; | 118 | err = -EINVAL; |
| 118 | } | 119 | } |
| 119 | 120 | ||
| 120 | return status; | 121 | return err; |
| 121 | } | 122 | } |
| 122 | 123 | ||
| 123 | static int atlas_acpi_button_remove(struct acpi_device *device, int type) | 124 | static int atlas_acpi_button_remove(struct acpi_device *device, int type) |
| @@ -126,14 +127,12 @@ static int atlas_acpi_button_remove(struct acpi_device *device, int type) | |||
| 126 | 127 | ||
| 127 | status = acpi_remove_address_space_handler(device->handle, | 128 | status = acpi_remove_address_space_handler(device->handle, |
| 128 | 0x81, &acpi_atlas_button_handler); | 129 | 0x81, &acpi_atlas_button_handler); |
| 129 | if (ACPI_FAILURE(status)) { | 130 | if (ACPI_FAILURE(status)) |
| 130 | printk(KERN_ERR "Atlas: Error removing addr spc handler\n"); | 131 | pr_err("error removing addr spc handler\n"); |
| 131 | status = -EINVAL; | ||
| 132 | } | ||
| 133 | 132 | ||
| 134 | input_unregister_device(input_dev); | 133 | input_unregister_device(input_dev); |
| 135 | 134 | ||
| 136 | return status; | 135 | return 0; |
| 137 | } | 136 | } |
| 138 | 137 | ||
| 139 | static const struct acpi_device_id atlas_device_ids[] = { | 138 | static const struct acpi_device_id atlas_device_ids[] = { |
| @@ -145,6 +144,7 @@ MODULE_DEVICE_TABLE(acpi, atlas_device_ids); | |||
| 145 | static struct acpi_driver atlas_acpi_driver = { | 144 | static struct acpi_driver atlas_acpi_driver = { |
| 146 | .name = ACPI_ATLAS_NAME, | 145 | .name = ACPI_ATLAS_NAME, |
| 147 | .class = ACPI_ATLAS_CLASS, | 146 | .class = ACPI_ATLAS_CLASS, |
| 147 | .owner = THIS_MODULE, | ||
| 148 | .ids = atlas_device_ids, | 148 | .ids = atlas_device_ids, |
| 149 | .ops = { | 149 | .ops = { |
| 150 | .add = atlas_acpi_button_add, | 150 | .add = atlas_acpi_button_add, |
| @@ -154,18 +154,10 @@ static struct acpi_driver atlas_acpi_driver = { | |||
| 154 | 154 | ||
| 155 | static int __init atlas_acpi_init(void) | 155 | static int __init atlas_acpi_init(void) |
| 156 | { | 156 | { |
| 157 | int result; | ||
| 158 | |||
| 159 | if (acpi_disabled) | 157 | if (acpi_disabled) |
| 160 | return -ENODEV; | 158 | return -ENODEV; |
| 161 | 159 | ||
| 162 | result = acpi_bus_register_driver(&atlas_acpi_driver); | 160 | return acpi_bus_register_driver(&atlas_acpi_driver); |
| 163 | if (result < 0) { | ||
| 164 | printk(KERN_ERR "Atlas ACPI: Unable to register driver\n"); | ||
| 165 | return -ENODEV; | ||
| 166 | } | ||
| 167 | |||
| 168 | return 0; | ||
| 169 | } | 161 | } |
| 170 | 162 | ||
| 171 | static void __exit atlas_acpi_exit(void) | 163 | static void __exit atlas_acpi_exit(void) |
