Message ID | 20190213211323.6072-3-mironov.ivan@gmail.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | Fix for the internal card reader and suspend on MacBooks | expand |
diff --git a/drivers/usb/core/quirks.c b/drivers/usb/core/quirks.c index c26ba784dc54..818f949ff1b9 100644 --- a/drivers/usb/core/quirks.c +++ b/drivers/usb/core/quirks.c @@ -310,6 +310,10 @@ static const struct usb_device_id usb_quirk_list[] = { /* appletouch */ { USB_DEVICE(0x05ac, 0x021a), .driver_info = USB_QUIRK_RESET_RESUME }, + /* Apple Card Reader */ + { USB_DEVICE(0x05ac, 0x8406), .driver_info = + USB_QUIRK_DISABLE_LINK_ON_SUSPEND }, + /* Genesys Logic hub, internally used by KY-688 USB 3.1 Type-C Hub */ { USB_DEVICE(0x05e3, 0x0612), .driver_info = USB_QUIRK_NO_LPM },
This enabled USB_QUIRK_DISABLE_LINK_ON_SUSPEND for the embedded SD card reader used in Apple MacBook laptops. Link: https://bugzilla.kernel.org/show_bug.cgi?id=111201 Link: https://bugzilla.kernel.org/show_bug.cgi?id=202509 Signed-off-by: Ivan Mironov <mironov.ivan@gmail.com> --- drivers/usb/core/quirks.c | 4 ++++ 1 file changed, 4 insertions(+)