Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751443AbWEDIfg (ORCPT ); Thu, 4 May 2006 04:35:36 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1751444AbWEDIfg (ORCPT ); Thu, 4 May 2006 04:35:36 -0400 Received: from k2smtpout01-02.prod.mesa1.secureserver.net ([64.202.189.89]:54159 "HELO k2smtpout01-01.prod.mesa1.secureserver.net") by vger.kernel.org with SMTP id S1751443AbWEDIfg (ORCPT ); Thu, 4 May 2006 04:35:36 -0400 X-Antivirus-MYDOMAIN-Mail-From: razvan.g@plutohome.com via plutohome.com.secureserver.net X-Antivirus-MYDOMAIN: 1.25-st-qms (Clear:RC:0(82.77.255.201):SA:0(-2.3/5.0):. Processed in 2.326988 secs Process 32648) Message-ID: <4459BCE5.7050502@plutohome.com> Date: Thu, 04 May 2006 11:35:49 +0300 From: Razvan Gavril User-Agent: Mail/News 1.5 (X11/20060309) MIME-Version: 1.0 To: Greg KH CC: linux-kernel@vger.kernel.org Subject: Re: [PATCH] ftdi_sio: ACT Solutions HomePro ZWave interface References: <44572749.6090103@plutohome.com> <20060502200532.GA8172@kroah.com> <44589FB0.6090909@plutohome.com> <20060503174349.GA3098@kroah.com> In-Reply-To: <20060503174349.GA3098@kroah.com> Content-Type: multipart/mixed; boundary="------------040502050004090703030204" Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2008 Lines: 52 This is a multi-part message in MIME format. --------------040502050004090703030204 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Sorry, this is the first patch that i ever submitted, next time I'll be more careful. The patch add the product id to support the zwave ZCU000-USB computer interface. here is the patch: Signed-off-by: Razvan Gavril --------------040502050004090703030204 Content-Type: text/x-patch; name="ftdi_sio.patch" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="ftdi_sio.patch" diff -Naur linux-2.6.17-rc3-orig/drivers/usb/serial/ftdi_sio.c linux-2.6.17-rc3/drivers/usb/serial/ftdi_sio.c --- linux-2.6.17-rc3-orig/drivers/usb/serial/ftdi_sio.c 2006-05-03 15:12:01.000000000 +0300 +++ linux-2.6.17-rc3/drivers/usb/serial/ftdi_sio.c 2006-05-03 15:04:39.000000000 +0300 @@ -307,6 +307,7 @@ static struct usb_device_id id_table_combined [] = { + { USB_DEVICE(FTDI_VID, FTDI_ACTZWAVE_PID) }, { USB_DEVICE(FTDI_VID, FTDI_IRTRANS_PID) }, { USB_DEVICE(FTDI_VID, FTDI_SIO_PID) }, { USB_DEVICE(FTDI_VID, FTDI_8U232AM_PID) }, diff -Naur linux-2.6.17-rc3-orig/drivers/usb/serial/ftdi_sio.h linux-2.6.17-rc3/drivers/usb/serial/ftdi_sio.h --- linux-2.6.17-rc3-orig/drivers/usb/serial/ftdi_sio.h 2006-05-03 15:09:33.000000000 +0300 +++ linux-2.6.17-rc3/drivers/usb/serial/ftdi_sio.h 2006-05-03 15:13:26.000000000 +0300 @@ -32,6 +32,10 @@ #define FTDI_NF_RIC_PID 0x0001 /* Product Id */ +/* ACT Solutions HomePro ZWave interface (http://www.act-solutions.com/HomePro.htm) */ +#define FTDI_ACTZWAVE_PID 0xF2D0 + + /* www.irtrans.de device */ #define FTDI_IRTRANS_PID 0xFC60 /* Product Id */ --------------040502050004090703030204-- - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/