Hello,

 This patch adds support for the DeLorme Earthmate lt-20 to the cypress_m8 
driver.  The device was tested and found to be compatible with the cypress_m8 
driver.  This is a resend with the complete patch which properly compiles.


     Thank you,
      Lonnie Mendez
------

 Adds support for the DeLorme Earthmate lt-20 to the cypress_m8 driver.
 

 Signed-off-by: Lonnie Mendez <[EMAIL PROTECTED]>
--- a/drivers/usb/serial/cypress_m8.h	2005-05-09 14:05:21.767348688 -0500
+++ b/drivers/usb/serial/cypress_m8.h	2005-05-09 14:30:28.911227992 -0500
@@ -13,6 +13,7 @@
 /* DeLorme Earthmate USB - a GPS device */
 #define	VENDOR_ID_DELORME		 0x1163
 #define PRODUCT_ID_EARTHMATEUSB		 0x0100
+#define PRODUCT_ID_EARTHMATEUSB_LT20	 0x0200
 
 /* Cypress HID->COM RS232 Adapter */
 #define VENDOR_ID_CYPRESS		 0x04b4
--- a/drivers/usb/serial/cypress_m8.c	2005-05-09 14:04:53.935579760 -0500
+++ b/drivers/usb/serial/cypress_m8.c	2005-05-09 14:13:20.503569720 -0500
@@ -89,6 +89,7 @@
 
 static struct usb_device_id id_table_earthmate [] = {
 	{ USB_DEVICE(VENDOR_ID_DELORME, PRODUCT_ID_EARTHMATEUSB) },
+	{ USB_DEVICE(VENDOR_ID_DELORME, PRODUCT_ID_EARTHMATEUSB_LT20) },
 	{ }						/* Terminating entry */
 };
 
@@ -99,6 +100,7 @@
 
 static struct usb_device_id id_table_combined [] = {
 	{ USB_DEVICE(VENDOR_ID_DELORME, PRODUCT_ID_EARTHMATEUSB) },
+	{ USB_DEVICE(VENDOR_ID_DELORME, PRODUCT_ID_EARTHMATEUSB_LT20) },
 	{ USB_DEVICE(VENDOR_ID_CYPRESS, PRODUCT_ID_CYPHIDCOM) },
 	{ }						/* Terminating entry */
 };

Reply via email to