usb: diag_bridge: Add support for PID 0x9001 & 0x9034
diag_bridge currently supports PID 0x9048. Add support for
PID 0x9001 which supports DIAG, NMEA, MODEM, NETWORK interfaces
and PID 0x9034 which supports DIAG, NMEA, MDM, NET1, NET2, NTE3,
NET4, NET5 interfaces.
Change-Id: I5ca31a5189f4469b9276b26b8b92c6090489e7f9
Signed-off-by: Hemant Kumar <hemantk@codeaurora.org>
diff --git a/drivers/usb/misc/diag_bridge.c b/drivers/usb/misc/diag_bridge.c
index 88a5993..66cdcb1 100644
--- a/drivers/usb/misc/diag_bridge.c
+++ b/drivers/usb/misc/diag_bridge.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2011, Code Aurora Forum. All rights reserved.
+ * Copyright (c) 2011-2012, Code Aurora Forum. All rights reserved.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 and
@@ -293,6 +293,10 @@
#define VALID_INTERFACE_NUM 0
static const struct usb_device_id diag_bridge_ids[] = {
+ { USB_DEVICE(0x5c6, 0x9001),
+ .driver_info = VALID_INTERFACE_NUM, },
+ { USB_DEVICE(0x5c6, 0x9034),
+ .driver_info = VALID_INTERFACE_NUM, },
{ USB_DEVICE(0x5c6, 0x9048),
.driver_info = VALID_INTERFACE_NUM, },