| Alex Hung | ecc83e5 | 2015-12-18 23:31:10 +0800 | [diff] [blame] | 1 | /* | 
| Alex Hung | bd5762a | 2017-02-14 15:20:34 +0800 | [diff] [blame] | 2 | *  Intel HID event & 5 button array driver | 
| Alex Hung | ecc83e5 | 2015-12-18 23:31:10 +0800 | [diff] [blame] | 3 | * | 
|  | 4 | *  Copyright (C) 2015 Alex Hung <alex.hung@canonical.com> | 
|  | 5 | *  Copyright (C) 2015 Andrew Lutomirski <luto@kernel.org> | 
|  | 6 | * | 
|  | 7 | *  This program is free software; you can redistribute it and/or modify | 
|  | 8 | *  it under the terms of the GNU General Public License as published by | 
|  | 9 | *  the Free Software Foundation; either version 2 of the License, or | 
|  | 10 | *  (at your option) any later version. | 
|  | 11 | * | 
|  | 12 | *  This program is distributed in the hope that it will be useful, | 
|  | 13 | *  but WITHOUT ANY WARRANTY; without even the implied warranty of | 
|  | 14 | *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
|  | 15 | *  GNU General Public License for more details. | 
|  | 16 | * | 
|  | 17 | */ | 
|  | 18 |  | 
|  | 19 | #include <linux/kernel.h> | 
|  | 20 | #include <linux/module.h> | 
|  | 21 | #include <linux/init.h> | 
|  | 22 | #include <linux/input.h> | 
|  | 23 | #include <linux/platform_device.h> | 
|  | 24 | #include <linux/input/sparse-keymap.h> | 
|  | 25 | #include <linux/acpi.h> | 
|  | 26 | #include <acpi/acpi_bus.h> | 
|  | 27 |  | 
|  | 28 | MODULE_LICENSE("GPL"); | 
|  | 29 | MODULE_AUTHOR("Alex Hung"); | 
|  | 30 |  | 
|  | 31 | static const struct acpi_device_id intel_hid_ids[] = { | 
|  | 32 | {"INT33D5", 0}, | 
|  | 33 | {"", 0}, | 
|  | 34 | }; | 
|  | 35 |  | 
|  | 36 | /* In theory, these are HID usages. */ | 
|  | 37 | static const struct key_entry intel_hid_keymap[] = { | 
|  | 38 | /* 1: LSuper (Page 0x07, usage 0xE3) -- unclear what to do */ | 
|  | 39 | /* 2: Toggle SW_ROTATE_LOCK -- easy to implement if seen in wild */ | 
|  | 40 | { KE_KEY, 3, { KEY_NUMLOCK } }, | 
|  | 41 | { KE_KEY, 4, { KEY_HOME } }, | 
|  | 42 | { KE_KEY, 5, { KEY_END } }, | 
|  | 43 | { KE_KEY, 6, { KEY_PAGEUP } }, | 
| Alex Hung | 1c319e7 | 2016-01-27 21:35:00 +0800 | [diff] [blame] | 44 | { KE_KEY, 7, { KEY_PAGEDOWN } }, | 
| Alex Hung | ecc83e5 | 2015-12-18 23:31:10 +0800 | [diff] [blame] | 45 | { KE_KEY, 8, { KEY_RFKILL } }, | 
|  | 46 | { KE_KEY, 9, { KEY_POWER } }, | 
|  | 47 | { KE_KEY, 11, { KEY_SLEEP } }, | 
|  | 48 | /* 13 has two different meanings in the spec -- ignore it. */ | 
|  | 49 | { KE_KEY, 14, { KEY_STOPCD } }, | 
|  | 50 | { KE_KEY, 15, { KEY_PLAYPAUSE } }, | 
|  | 51 | { KE_KEY, 16, { KEY_MUTE } }, | 
|  | 52 | { KE_KEY, 17, { KEY_VOLUMEUP } }, | 
|  | 53 | { KE_KEY, 18, { KEY_VOLUMEDOWN } }, | 
|  | 54 | { KE_KEY, 19, { KEY_BRIGHTNESSUP } }, | 
|  | 55 | { KE_KEY, 20, { KEY_BRIGHTNESSDOWN } }, | 
|  | 56 | /* 27: wake -- needs special handling */ | 
|  | 57 | { KE_END }, | 
|  | 58 | }; | 
|  | 59 |  | 
| Alex Hung | bd5762a | 2017-02-14 15:20:34 +0800 | [diff] [blame] | 60 | /* 5 button array notification value. */ | 
|  | 61 | static const struct key_entry intel_array_keymap[] = { | 
|  | 62 | { KE_KEY,    0xC2, { KEY_LEFTMETA } },                /* Press */ | 
|  | 63 | { KE_IGNORE, 0xC3, { KEY_LEFTMETA } },                /* Release */ | 
|  | 64 | { KE_KEY,    0xC4, { KEY_VOLUMEUP } },                /* Press */ | 
|  | 65 | { KE_IGNORE, 0xC5, { KEY_VOLUMEUP } },                /* Release */ | 
|  | 66 | { KE_KEY,    0xC6, { KEY_VOLUMEDOWN } },              /* Press */ | 
|  | 67 | { KE_IGNORE, 0xC7, { KEY_VOLUMEDOWN } },              /* Release */ | 
|  | 68 | { KE_SW,     0xC8, { .sw = { SW_ROTATE_LOCK, 1 } } }, /* Press */ | 
|  | 69 | { KE_SW,     0xC9, { .sw = { SW_ROTATE_LOCK, 0 } } }, /* Release */ | 
|  | 70 | { KE_KEY,    0xCE, { KEY_POWER } },                   /* Press */ | 
|  | 71 | { KE_IGNORE, 0xCF, { KEY_POWER } },                   /* Release */ | 
|  | 72 | { KE_END }, | 
|  | 73 | }; | 
|  | 74 |  | 
| Alex Hung | ecc83e5 | 2015-12-18 23:31:10 +0800 | [diff] [blame] | 75 | struct intel_hid_priv { | 
|  | 76 | struct input_dev *input_dev; | 
| Alex Hung | bd5762a | 2017-02-14 15:20:34 +0800 | [diff] [blame] | 77 | struct input_dev *array; | 
| Alex Hung | ecc83e5 | 2015-12-18 23:31:10 +0800 | [diff] [blame] | 78 | }; | 
|  | 79 |  | 
| Michał Kępień | 99a75e7 | 2017-02-24 11:33:07 +0100 | [diff] [blame] | 80 | static int intel_hid_set_enable(struct device *device, bool enable) | 
| Alex Hung | ecc83e5 | 2015-12-18 23:31:10 +0800 | [diff] [blame] | 81 | { | 
| Alex Hung | ecc83e5 | 2015-12-18 23:31:10 +0800 | [diff] [blame] | 82 | acpi_status status; | 
|  | 83 |  | 
| Michał Kępień | 93ed249 | 2017-02-24 11:33:06 +0100 | [diff] [blame] | 84 | status = acpi_execute_simple_method(ACPI_HANDLE(device), "HDSM", | 
|  | 85 | enable); | 
| Axel Lin | 3526eca | 2016-09-19 09:33:51 +0800 | [diff] [blame] | 86 | if (ACPI_FAILURE(status)) { | 
| Alex Hung | ecc83e5 | 2015-12-18 23:31:10 +0800 | [diff] [blame] | 87 | dev_warn(device, "failed to %sable hotkeys\n", | 
|  | 88 | enable ? "en" : "dis"); | 
|  | 89 | return -EIO; | 
|  | 90 | } | 
|  | 91 |  | 
|  | 92 | return 0; | 
|  | 93 | } | 
|  | 94 |  | 
| Alex Hung | bd5762a | 2017-02-14 15:20:34 +0800 | [diff] [blame] | 95 | static void intel_button_array_enable(struct device *device, bool enable) | 
|  | 96 | { | 
|  | 97 | struct intel_hid_priv *priv = dev_get_drvdata(device); | 
|  | 98 | acpi_handle handle = ACPI_HANDLE(device); | 
|  | 99 | unsigned long long button_cap; | 
|  | 100 | acpi_status status; | 
|  | 101 |  | 
|  | 102 | if (!priv->array) | 
|  | 103 | return; | 
|  | 104 |  | 
|  | 105 | /* Query supported platform features */ | 
|  | 106 | status = acpi_evaluate_integer(handle, "BTNC", NULL, &button_cap); | 
|  | 107 | if (ACPI_FAILURE(status)) { | 
|  | 108 | dev_warn(device, "failed to get button capability\n"); | 
|  | 109 | return; | 
|  | 110 | } | 
|  | 111 |  | 
|  | 112 | /* Enable|disable features - power button is always enabled */ | 
|  | 113 | status = acpi_execute_simple_method(handle, "BTNE", | 
|  | 114 | enable ? button_cap : 1); | 
|  | 115 | if (ACPI_FAILURE(status)) | 
|  | 116 | dev_warn(device, "failed to set button capability\n"); | 
|  | 117 | } | 
|  | 118 |  | 
| Alex Hung | ecc83e5 | 2015-12-18 23:31:10 +0800 | [diff] [blame] | 119 | static int intel_hid_pl_suspend_handler(struct device *device) | 
|  | 120 | { | 
| Michał Kępień | 99a75e7 | 2017-02-24 11:33:07 +0100 | [diff] [blame] | 121 | intel_hid_set_enable(device, false); | 
| Alex Hung | bd5762a | 2017-02-14 15:20:34 +0800 | [diff] [blame] | 122 | intel_button_array_enable(device, false); | 
|  | 123 |  | 
| Alex Hung | ecc83e5 | 2015-12-18 23:31:10 +0800 | [diff] [blame] | 124 | return 0; | 
|  | 125 | } | 
|  | 126 |  | 
|  | 127 | static int intel_hid_pl_resume_handler(struct device *device) | 
|  | 128 | { | 
| Michał Kępień | 99a75e7 | 2017-02-24 11:33:07 +0100 | [diff] [blame] | 129 | intel_hid_set_enable(device, true); | 
| Alex Hung | bd5762a | 2017-02-14 15:20:34 +0800 | [diff] [blame] | 130 | intel_button_array_enable(device, true); | 
|  | 131 |  | 
| Alex Hung | ecc83e5 | 2015-12-18 23:31:10 +0800 | [diff] [blame] | 132 | return 0; | 
|  | 133 | } | 
|  | 134 |  | 
|  | 135 | static const struct dev_pm_ops intel_hid_pl_pm_ops = { | 
| Alex Hung | 45aa56c | 2016-03-21 16:08:42 +0800 | [diff] [blame] | 136 | .freeze  = intel_hid_pl_suspend_handler, | 
|  | 137 | .restore  = intel_hid_pl_resume_handler, | 
| Alex Hung | ecc83e5 | 2015-12-18 23:31:10 +0800 | [diff] [blame] | 138 | .suspend  = intel_hid_pl_suspend_handler, | 
|  | 139 | .resume  = intel_hid_pl_resume_handler, | 
|  | 140 | }; | 
|  | 141 |  | 
|  | 142 | static int intel_hid_input_setup(struct platform_device *device) | 
|  | 143 | { | 
|  | 144 | struct intel_hid_priv *priv = dev_get_drvdata(&device->dev); | 
|  | 145 | int ret; | 
|  | 146 |  | 
| Michał Kępień | 175cc9b | 2017-02-24 11:33:08 +0100 | [diff] [blame^] | 147 | priv->input_dev = devm_input_allocate_device(&device->dev); | 
| Alex Hung | ecc83e5 | 2015-12-18 23:31:10 +0800 | [diff] [blame] | 148 | if (!priv->input_dev) | 
|  | 149 | return -ENOMEM; | 
|  | 150 |  | 
|  | 151 | ret = sparse_keymap_setup(priv->input_dev, intel_hid_keymap, NULL); | 
|  | 152 | if (ret) | 
| Michał Kępień | 175cc9b | 2017-02-24 11:33:08 +0100 | [diff] [blame^] | 153 | return ret; | 
| Alex Hung | ecc83e5 | 2015-12-18 23:31:10 +0800 | [diff] [blame] | 154 |  | 
|  | 155 | priv->input_dev->dev.parent = &device->dev; | 
|  | 156 | priv->input_dev->name = "Intel HID events"; | 
|  | 157 | priv->input_dev->id.bustype = BUS_HOST; | 
|  | 158 | set_bit(KEY_RFKILL, priv->input_dev->keybit); | 
|  | 159 |  | 
| Michał Kępień | 175cc9b | 2017-02-24 11:33:08 +0100 | [diff] [blame^] | 160 | return input_register_device(priv->input_dev); | 
| Alex Hung | ecc83e5 | 2015-12-18 23:31:10 +0800 | [diff] [blame] | 161 | } | 
|  | 162 |  | 
| Alex Hung | bd5762a | 2017-02-14 15:20:34 +0800 | [diff] [blame] | 163 | static int intel_button_array_input_setup(struct platform_device *device) | 
|  | 164 | { | 
|  | 165 | struct intel_hid_priv *priv = dev_get_drvdata(&device->dev); | 
|  | 166 | int ret; | 
|  | 167 |  | 
|  | 168 | /* Setup input device for 5 button array */ | 
|  | 169 | priv->array = devm_input_allocate_device(&device->dev); | 
|  | 170 | if (!priv->array) | 
|  | 171 | return -ENOMEM; | 
|  | 172 |  | 
|  | 173 | ret = sparse_keymap_setup(priv->array, intel_array_keymap, NULL); | 
|  | 174 | if (ret) | 
|  | 175 | return ret; | 
|  | 176 |  | 
|  | 177 | priv->array->dev.parent = &device->dev; | 
|  | 178 | priv->array->name = "Intel HID 5 button array"; | 
|  | 179 | priv->array->id.bustype = BUS_HOST; | 
|  | 180 |  | 
|  | 181 | return input_register_device(priv->array); | 
|  | 182 | } | 
|  | 183 |  | 
| Alex Hung | ecc83e5 | 2015-12-18 23:31:10 +0800 | [diff] [blame] | 184 | static void notify_handler(acpi_handle handle, u32 event, void *context) | 
|  | 185 | { | 
|  | 186 | struct platform_device *device = context; | 
|  | 187 | struct intel_hid_priv *priv = dev_get_drvdata(&device->dev); | 
|  | 188 | unsigned long long ev_index; | 
|  | 189 | acpi_status status; | 
|  | 190 |  | 
| Alex Hung | bd5762a | 2017-02-14 15:20:34 +0800 | [diff] [blame] | 191 | /* 0xC0 is for HID events, other values are for 5 button array */ | 
| Alex Hung | ecc83e5 | 2015-12-18 23:31:10 +0800 | [diff] [blame] | 192 | if (event != 0xc0) { | 
| Alex Hung | bd5762a | 2017-02-14 15:20:34 +0800 | [diff] [blame] | 193 | if (!priv->array || | 
|  | 194 | !sparse_keymap_report_event(priv->array, event, 1, true)) | 
|  | 195 | dev_info(&device->dev, "unknown event 0x%x\n", event); | 
| Alex Hung | ecc83e5 | 2015-12-18 23:31:10 +0800 | [diff] [blame] | 196 | return; | 
|  | 197 | } | 
|  | 198 |  | 
|  | 199 | status = acpi_evaluate_integer(handle, "HDEM", NULL, &ev_index); | 
| Axel Lin | 3526eca | 2016-09-19 09:33:51 +0800 | [diff] [blame] | 200 | if (ACPI_FAILURE(status)) { | 
| Alex Hung | ecc83e5 | 2015-12-18 23:31:10 +0800 | [diff] [blame] | 201 | dev_warn(&device->dev, "failed to get event index\n"); | 
|  | 202 | return; | 
|  | 203 | } | 
|  | 204 |  | 
|  | 205 | if (!sparse_keymap_report_event(priv->input_dev, ev_index, 1, true)) | 
|  | 206 | dev_info(&device->dev, "unknown event index 0x%llx\n", | 
|  | 207 | ev_index); | 
|  | 208 | } | 
|  | 209 |  | 
|  | 210 | static int intel_hid_probe(struct platform_device *device) | 
|  | 211 | { | 
|  | 212 | acpi_handle handle = ACPI_HANDLE(&device->dev); | 
| Alex Hung | bd5762a | 2017-02-14 15:20:34 +0800 | [diff] [blame] | 213 | unsigned long long event_cap, mode; | 
| Alex Hung | ecc83e5 | 2015-12-18 23:31:10 +0800 | [diff] [blame] | 214 | struct intel_hid_priv *priv; | 
| Alex Hung | ecc83e5 | 2015-12-18 23:31:10 +0800 | [diff] [blame] | 215 | acpi_status status; | 
|  | 216 | int err; | 
|  | 217 |  | 
|  | 218 | status = acpi_evaluate_integer(handle, "HDMM", NULL, &mode); | 
| Axel Lin | 3526eca | 2016-09-19 09:33:51 +0800 | [diff] [blame] | 219 | if (ACPI_FAILURE(status)) { | 
| Alex Hung | ecc83e5 | 2015-12-18 23:31:10 +0800 | [diff] [blame] | 220 | dev_warn(&device->dev, "failed to read mode\n"); | 
|  | 221 | return -ENODEV; | 
|  | 222 | } | 
|  | 223 |  | 
|  | 224 | if (mode != 0) { | 
|  | 225 | /* | 
|  | 226 | * This driver only implements "simple" mode.  There appear | 
|  | 227 | * to be no other modes, but we should be paranoid and check | 
|  | 228 | * for compatibility. | 
|  | 229 | */ | 
|  | 230 | dev_info(&device->dev, "platform is not in simple mode\n"); | 
|  | 231 | return -ENODEV; | 
|  | 232 | } | 
|  | 233 |  | 
| Wolfram Sang | e8b69a5 | 2016-02-21 15:22:27 +0100 | [diff] [blame] | 234 | priv = devm_kzalloc(&device->dev, sizeof(*priv), GFP_KERNEL); | 
| Alex Hung | ecc83e5 | 2015-12-18 23:31:10 +0800 | [diff] [blame] | 235 | if (!priv) | 
|  | 236 | return -ENOMEM; | 
|  | 237 | dev_set_drvdata(&device->dev, priv); | 
|  | 238 |  | 
|  | 239 | err = intel_hid_input_setup(device); | 
|  | 240 | if (err) { | 
|  | 241 | pr_err("Failed to setup Intel HID hotkeys\n"); | 
|  | 242 | return err; | 
|  | 243 | } | 
|  | 244 |  | 
| Alex Hung | bd5762a | 2017-02-14 15:20:34 +0800 | [diff] [blame] | 245 | /* Setup 5 button array */ | 
|  | 246 | status = acpi_evaluate_integer(handle, "HEBC", NULL, &event_cap); | 
|  | 247 | if (ACPI_SUCCESS(status) && (event_cap & 0x20000)) { | 
|  | 248 | dev_info(&device->dev, "platform supports 5 button array\n"); | 
|  | 249 | err = intel_button_array_input_setup(device); | 
|  | 250 | if (err) | 
|  | 251 | pr_err("Failed to setup Intel 5 button array hotkeys\n"); | 
|  | 252 | } | 
|  | 253 |  | 
| Alex Hung | ecc83e5 | 2015-12-18 23:31:10 +0800 | [diff] [blame] | 254 | status = acpi_install_notify_handler(handle, | 
|  | 255 | ACPI_DEVICE_NOTIFY, | 
|  | 256 | notify_handler, | 
|  | 257 | device); | 
| Michał Kępień | 175cc9b | 2017-02-24 11:33:08 +0100 | [diff] [blame^] | 258 | if (ACPI_FAILURE(status)) | 
|  | 259 | return -EBUSY; | 
| Alex Hung | ecc83e5 | 2015-12-18 23:31:10 +0800 | [diff] [blame] | 260 |  | 
| Michał Kępień | 99a75e7 | 2017-02-24 11:33:07 +0100 | [diff] [blame] | 261 | err = intel_hid_set_enable(&device->dev, true); | 
| Alex Hung | ecc83e5 | 2015-12-18 23:31:10 +0800 | [diff] [blame] | 262 | if (err) | 
|  | 263 | goto err_remove_notify; | 
|  | 264 |  | 
| Alex Hung | bd5762a | 2017-02-14 15:20:34 +0800 | [diff] [blame] | 265 | if (priv->array) { | 
|  | 266 | intel_button_array_enable(&device->dev, true); | 
|  | 267 |  | 
|  | 268 | /* Call button load method to enable HID power button */ | 
|  | 269 | status = acpi_evaluate_object(handle, "BTNL", NULL, NULL); | 
|  | 270 | if (ACPI_FAILURE(status)) | 
|  | 271 | dev_warn(&device->dev, | 
|  | 272 | "failed to enable HID power button\n"); | 
|  | 273 | } | 
|  | 274 |  | 
| Alex Hung | ecc83e5 | 2015-12-18 23:31:10 +0800 | [diff] [blame] | 275 | return 0; | 
|  | 276 |  | 
|  | 277 | err_remove_notify: | 
|  | 278 | acpi_remove_notify_handler(handle, ACPI_DEVICE_NOTIFY, notify_handler); | 
|  | 279 |  | 
| Alex Hung | ecc83e5 | 2015-12-18 23:31:10 +0800 | [diff] [blame] | 280 | return err; | 
|  | 281 | } | 
|  | 282 |  | 
|  | 283 | static int intel_hid_remove(struct platform_device *device) | 
|  | 284 | { | 
|  | 285 | acpi_handle handle = ACPI_HANDLE(&device->dev); | 
|  | 286 |  | 
|  | 287 | acpi_remove_notify_handler(handle, ACPI_DEVICE_NOTIFY, notify_handler); | 
| Michał Kępień | 99a75e7 | 2017-02-24 11:33:07 +0100 | [diff] [blame] | 288 | intel_hid_set_enable(&device->dev, false); | 
| Alex Hung | bd5762a | 2017-02-14 15:20:34 +0800 | [diff] [blame] | 289 | intel_button_array_enable(&device->dev, false); | 
| Alex Hung | ecc83e5 | 2015-12-18 23:31:10 +0800 | [diff] [blame] | 290 |  | 
|  | 291 | /* | 
|  | 292 | * Even if we failed to shut off the event stream, we can still | 
|  | 293 | * safely detach from the device. | 
|  | 294 | */ | 
|  | 295 | return 0; | 
|  | 296 | } | 
|  | 297 |  | 
|  | 298 | static struct platform_driver intel_hid_pl_driver = { | 
|  | 299 | .driver = { | 
|  | 300 | .name = "intel-hid", | 
|  | 301 | .acpi_match_table = intel_hid_ids, | 
|  | 302 | .pm = &intel_hid_pl_pm_ops, | 
|  | 303 | }, | 
|  | 304 | .probe = intel_hid_probe, | 
|  | 305 | .remove = intel_hid_remove, | 
|  | 306 | }; | 
|  | 307 | MODULE_DEVICE_TABLE(acpi, intel_hid_ids); | 
|  | 308 |  | 
|  | 309 | /* | 
|  | 310 | * Unfortunately, some laptops provide a _HID="INT33D5" device with | 
|  | 311 | * _CID="PNP0C02".  This causes the pnpacpi scan driver to claim the | 
|  | 312 | * ACPI node, so no platform device will be created.  The pnpacpi | 
|  | 313 | * driver rejects this device in subsequent processing, so no physical | 
|  | 314 | * node is created at all. | 
|  | 315 | * | 
|  | 316 | * As a workaround until the ACPI core figures out how to handle | 
|  | 317 | * this corner case, manually ask the ACPI platform device code to | 
|  | 318 | * claim the ACPI node. | 
|  | 319 | */ | 
|  | 320 | static acpi_status __init | 
|  | 321 | check_acpi_dev(acpi_handle handle, u32 lvl, void *context, void **rv) | 
|  | 322 | { | 
|  | 323 | const struct acpi_device_id *ids = context; | 
|  | 324 | struct acpi_device *dev; | 
|  | 325 |  | 
|  | 326 | if (acpi_bus_get_device(handle, &dev) != 0) | 
|  | 327 | return AE_OK; | 
|  | 328 |  | 
|  | 329 | if (acpi_match_device_ids(dev, ids) == 0) | 
| Heikki Krogerus | 1571875 | 2016-11-03 16:21:26 +0200 | [diff] [blame] | 330 | if (acpi_create_platform_device(dev, NULL)) | 
| Alex Hung | ecc83e5 | 2015-12-18 23:31:10 +0800 | [diff] [blame] | 331 | dev_info(&dev->dev, | 
|  | 332 | "intel-hid: created platform device\n"); | 
|  | 333 |  | 
|  | 334 | return AE_OK; | 
|  | 335 | } | 
|  | 336 |  | 
|  | 337 | static int __init intel_hid_init(void) | 
|  | 338 | { | 
|  | 339 | acpi_walk_namespace(ACPI_TYPE_DEVICE, ACPI_ROOT_OBJECT, | 
|  | 340 | ACPI_UINT32_MAX, check_acpi_dev, NULL, | 
|  | 341 | (void *)intel_hid_ids, NULL); | 
|  | 342 |  | 
|  | 343 | return platform_driver_register(&intel_hid_pl_driver); | 
|  | 344 | } | 
|  | 345 | module_init(intel_hid_init); | 
|  | 346 |  | 
|  | 347 | static void __exit intel_hid_exit(void) | 
|  | 348 | { | 
|  | 349 | platform_driver_unregister(&intel_hid_pl_driver); | 
|  | 350 | } | 
|  | 351 | module_exit(intel_hid_exit); |