From 7c8fdb7e5e94bdb382821333477effc093f85dc7 Mon Sep 17 00:00:00 2001 From: Josh Boyer Date: Nov 24 2014 13:28:32 +0000 Subject: Add quirk for Laser Mouse 6000 (rhbz 1165206) --- diff --git a/kernel.spec b/kernel.spec index 4699021..2710406 100644 --- a/kernel.spec +++ b/kernel.spec @@ -612,6 +612,9 @@ Patch26064: Input-add-driver-for-the-Goodix-touchpanel.patch #rhbz 1135338 Patch26070: HID-add-support-for-MS-Surface-Pro-3-Type-Cover.patch +#rhbz 1165206 +Patch26071: usb-quirks-Add-reset-resume-quirk-for-MS-Wireless-La.patch + # git clone ssh://git.fedorahosted.org/git/kernel-arm64.git, git diff master...devel Patch30000: kernel-arm64.patch @@ -1333,6 +1336,9 @@ ApplyPatch Input-add-driver-for-the-Goodix-touchpanel.patch #rhbz 1135338 ApplyPatch HID-add-support-for-MS-Surface-Pro-3-Type-Cover.patch +#rhbz 1165206 +ApplyPatch usb-quirks-Add-reset-resume-quirk-for-MS-Wireless-La.patch + %if 0%{?aarch64patches} ApplyPatch kernel-arm64.patch %ifnarch aarch64 # this is stupid, but i want to notice before secondary koji does. @@ -2203,6 +2209,7 @@ fi %changelog * Mon Nov 24 2014 Josh Boyer - Linux v3.18-rc6 +- Add quirk for Laser Mouse 6000 (rhbz 1165206) * Fri Nov 21 2014 Josh Boyer - Move TPM drivers to main kernel package (rhbz 1164937) diff --git a/usb-quirks-Add-reset-resume-quirk-for-MS-Wireless-La.patch b/usb-quirks-Add-reset-resume-quirk-for-MS-Wireless-La.patch new file mode 100644 index 0000000..e590df2 --- /dev/null +++ b/usb-quirks-Add-reset-resume-quirk-for-MS-Wireless-La.patch @@ -0,0 +1,31 @@ +From: Hans de Goede +Date: Thu, 20 Nov 2014 15:16:01 +0100 +Subject: [PATCH] usb-quirks: Add reset-resume quirk for MS Wireless Laser + Mouse 6000 + +This wireless mouse receiver needs a reset-resume quirk to properly come +out of reset. + +BugLink: https://bugzilla.redhat.com/show_bug.cgi?id=1165206 +Signed-off-by: Hans de Goede +--- + drivers/usb/core/quirks.c | 3 +++ + 1 file changed, 3 insertions(+) + +diff --git a/drivers/usb/core/quirks.c b/drivers/usb/core/quirks.c +index 39b4081b632d..96fafed92b76 100644 +--- a/drivers/usb/core/quirks.c ++++ b/drivers/usb/core/quirks.c +@@ -44,6 +44,9 @@ static const struct usb_device_id usb_quirk_list[] = { + /* Creative SB Audigy 2 NX */ + { USB_DEVICE(0x041e, 0x3020), .driver_info = USB_QUIRK_RESET_RESUME }, + ++ /* Microsoft Wireless Laser Mouse 6000 Receiver */ ++ { USB_DEVICE(0x045e, 0x00e1), .driver_info = USB_QUIRK_RESET_RESUME }, ++ + /* Microsoft LifeCam-VX700 v2.0 */ + { USB_DEVICE(0x045e, 0x0770), .driver_info = USB_QUIRK_RESET_RESUME }, + +-- +1.9.3 +