Return-Path: Message-Id: <200812012201.mB1M155p001654@imap1.linux-foundation.org> Subject: [patch for 2.6.28? 1/1] bluetooth: Dell Wireless 365 requires reset quirk To: davem@davemloft.net Cc: linux-bluetooth@vger.kernel.org, netdev@vger.kernel.org, akpm@linux-foundation.org, mario_limonciello@dell.com, hidave.darkstar@gmail.com, marcel@holtmann.org, stable@kernel.org, tim.gardner@canonical.com From: akpm@linux-foundation.org Date: Mon, 01 Dec 2008 14:01:05 -0800 List-ID: From: Mario Limonciello This patch causes the BT365 to be reset when the driver is loaded. Without it, the machine is unable to connect to other devices or to scan for devices. Signed-off-by: Mario Limonciello Signed-off-by: Tim Gardner Cc: Marcel Holtmann Cc: Dave Young Cc: Signed-off-by: Andrew Morton --- drivers/bluetooth/btusb.c | 3 +++ 1 file changed, 3 insertions(+) diff -puN drivers/bluetooth/btusb.c~bluetooth-dell-wireless-365-requires-reset-quirk drivers/bluetooth/btusb.c --- a/drivers/bluetooth/btusb.c~bluetooth-dell-wireless-365-requires-reset-quirk +++ a/drivers/bluetooth/btusb.c @@ -125,6 +125,9 @@ static struct usb_device_id blacklist_ta /* Dell laptop with Broadcom chip */ { USB_DEVICE(0x413c, 0x8126), .driver_info = BTUSB_RESET | BTUSB_WRONG_SCO_MTU }, + /* Dell Wireless 365 */ + { USB_DEVICE(0x413c, 0x8160), .driver_info = BTUSB_RESET }, + /* Dell Wireless 370 */ { USB_DEVICE(0x413c, 0x8156), .driver_info = BTUSB_RESET | BTUSB_WRONG_SCO_MTU }, _