From: Jason Gerecke Date: Wed, 25 Jan 2017 20:08:35 +0000 (-0800) Subject: HID: wacom: Enable HID_GENERIC codepath for Bluetooth devices X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=b9e06256932bd462b7ee392d7742a79ade679abe;p=GitHub%2FLineageOS%2Fandroid_kernel_motorola_exynos9610.git HID: wacom: Enable HID_GENERIC codepath for Bluetooth devices There no reason a Bluetooth device with the appropriate HID descriptor couldn't be used through the HID_GENERIC codepath in the future. Ensure that the driver attempts to bind to these devices. Signed-off-by: Jason Gerecke Reviewed-by: Ping Cheng Signed-off-by: Jiri Kosina --- diff --git a/drivers/hid/wacom_wac.c b/drivers/hid/wacom_wac.c index 0884dc9554fd..a23b736d05d2 100644 --- a/drivers/hid/wacom_wac.c +++ b/drivers/hid/wacom_wac.c @@ -4121,6 +4121,7 @@ const struct hid_device_id wacom_ids[] = { { USB_DEVICE_WACOM(HID_ANY_ID) }, { I2C_DEVICE_WACOM(HID_ANY_ID) }, + { BT_DEVICE_WACOM(HID_ANY_ID) }, { } }; MODULE_DEVICE_TABLE(hid, wacom_ids);