Commit 9e926158 authored by Robert C. Olse's avatar Robert C. Olse Committed by Greg Kroah-Hartman

[PATCH] USB: PL2303 - PharosGPS patch

This patch adds recognition/support for the PharosGPS puck, as included with
Microsoft's Streets and Trips package.  The device has an inline
USB-to-serial converter which functions as a PL2303 but with different
VENDOR_ID and PRODUCT_ID, and so the PL2303 driver is modified to recognize
this additional device.

Signed-off by: Robert C. Olsen, III [pl2303@2005dauphin.org]
Signed-off-by: default avatarGreg Kroah-Hartman <greg@kroah.com>
parent 8939233b
......@@ -91,6 +91,7 @@ static struct usb_device_id id_table [] = {
{ USB_DEVICE(SITECOM_VENDOR_ID, SITECOM_PRODUCT_ID) },
{ USB_DEVICE(ALCATEL_VENDOR_ID, ALCATEL_PRODUCT_ID) },
{ USB_DEVICE(SAMSUNG_VENDOR_ID, SAMSUNG_PRODUCT_ID) },
{ USB_DEVICE(PHAROS_VENDOR_ID, PHAROS_PRODUCT_ID) },
{ } /* Terminating entry */
};
......
......@@ -50,3 +50,6 @@
#define SAMSUNG_VENDOR_ID 0x04e8
#define SAMSUNG_PRODUCT_ID 0x8001
/* Pharos / Microsoft GPS puck */
#define PHAROS_VENDOR_ID 0x067b
#define PHAROS_PRODUCT_ID 0xaaa0
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment