From b13be0d402d1571c475c2ff41beb57bc3bb0eabf Mon Sep 17 00:00:00 2001 From: buhrow Date: Fri, 25 May 2012 16:33:54 +0000 Subject: Added the Apple iPod Touch (4th generation) to the list of Apple devices with bogus uhid and uaudio matches. It now attaches as a ugen device. --- sys/dev/usb/usb_quirks.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'sys/dev') diff --git a/sys/dev/usb/usb_quirks.c b/sys/dev/usb/usb_quirks.c index 517643486c3..f13ff9384aa 100644 --- a/sys/dev/usb/usb_quirks.c +++ b/sys/dev/usb/usb_quirks.c @@ -1,4 +1,4 @@ -/* $NetBSD: usb_quirks.c,v 1.74 2012/02/11 05:27:23 plunky Exp $ */ +/* $NetBSD: usb_quirks.c,v 1.75 2012/05/25 16:33:54 buhrow Exp $ */ /* $FreeBSD: src/sys/dev/usb/usb_quirks.c,v 1.30 2003/01/02 04:15:55 imp Exp $ */ /* @@ -32,7 +32,7 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: usb_quirks.c,v 1.74 2012/02/11 05:27:23 plunky Exp $"); +__KERNEL_RCSID(0, "$NetBSD: usb_quirks.c,v 1.75 2012/05/25 16:33:54 buhrow Exp $"); #include #include @@ -129,6 +129,8 @@ Static const struct usbd_quirk_entry { ANY, { UQ_HID_IGNORE | UQ_BAD_AUDIO }}, { USB_VENDOR_APPLE, USB_PRODUCT_APPLE_IPOD_TOUCH, ANY, { UQ_HID_IGNORE | UQ_BAD_AUDIO }}, + { USB_VENDOR_APPLE, USB_PRODUCT_APPLE_IPOD_TOUCH_4G, + ANY, { UQ_HID_IGNORE | UQ_BAD_AUDIO }}, { USB_VENDOR_APPLE, USB_PRODUCT_APPLE_IPHONE_3G, ANY, { UQ_HID_IGNORE | UQ_BAD_AUDIO }}, { USB_VENDOR_APPLE, USB_PRODUCT_APPLE_IPHONE_3GS, -- cgit