diff options
Diffstat (limited to 'drivers/input/power.c')
| -rw-r--r-- | drivers/input/power.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/drivers/input/power.c b/drivers/input/power.c index 51a519e24b6d..ee82464a2fa7 100644 --- a/drivers/input/power.c +++ b/drivers/input/power.c | |||
| @@ -98,7 +98,7 @@ static void power_event(struct input_handle *handle, unsigned int type, | |||
| 98 | 98 | ||
| 99 | static struct input_handle *power_connect(struct input_handler *handler, | 99 | static struct input_handle *power_connect(struct input_handler *handler, |
| 100 | struct input_dev *dev, | 100 | struct input_dev *dev, |
| 101 | struct input_device_id *id) | 101 | const struct input_device_id *id) |
| 102 | { | 102 | { |
| 103 | struct input_handle *handle; | 103 | struct input_handle *handle; |
| 104 | 104 | ||
| @@ -120,7 +120,7 @@ static void power_disconnect(struct input_handle *handle) | |||
| 120 | kfree(handle); | 120 | kfree(handle); |
| 121 | } | 121 | } |
| 122 | 122 | ||
| 123 | static struct input_device_id power_ids[] = { | 123 | static const struct input_device_id power_ids[] = { |
| 124 | { | 124 | { |
| 125 | .flags = INPUT_DEVICE_ID_MATCH_EVBIT | INPUT_DEVICE_ID_MATCH_KEYBIT, | 125 | .flags = INPUT_DEVICE_ID_MATCH_EVBIT | INPUT_DEVICE_ID_MATCH_KEYBIT, |
| 126 | .evbit = { BIT(EV_KEY) }, | 126 | .evbit = { BIT(EV_KEY) }, |
| @@ -150,8 +150,7 @@ static struct input_handler power_handler = { | |||
| 150 | 150 | ||
| 151 | static int __init power_init(void) | 151 | static int __init power_init(void) |
| 152 | { | 152 | { |
| 153 | input_register_handler(&power_handler); | 153 | return input_register_handler(&power_handler); |
| 154 | return 0; | ||
| 155 | } | 154 | } |
| 156 | 155 | ||
| 157 | static void __exit power_exit(void) | 156 | static void __exit power_exit(void) |
