From patchwork Tue Jan 5 14:50:31 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jan Dumon X-Patchwork-Id: 42120 X-Patchwork-Delegate: davem@davemloft.net Return-Path: X-Original-To: patchwork-incoming@ozlabs.org Delivered-To: patchwork-incoming@ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id 9FC71B6EF3 for ; Wed, 6 Jan 2010 02:00:41 +1100 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754582Ab0AEPAa (ORCPT ); Tue, 5 Jan 2010 10:00:30 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1754496Ab0AEPA3 (ORCPT ); Tue, 5 Jan 2010 10:00:29 -0500 Received: from mailer1.option.com ([81.246.70.162]:32853 "EHLO mailer1.option.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753990Ab0AEPA2 (ORCPT ); Tue, 5 Jan 2010 10:00:28 -0500 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AjgBAGbgQksKAAAZ/2dsb2JhbAAIg1eYdakpjVWBLIIuVgQ Received: from unknown (HELO smtp3.option.com) ([10.0.0.25]) by mailer1.option.local with ESMTP; 05 Jan 2010 15:50:33 +0100 Received: from raptor ([10.30.11.23]) by smtp3.option.com with Microsoft SMTPSVC(6.0.3790.3959); Tue, 5 Jan 2010 15:50:31 +0100 Received: by raptor (sSMTP sendmail emulation); Tue, 05 Jan 2010 15:50:31 +0100 Date: Tue, 5 Jan 2010 15:50:31 +0100 From: Jan Dumon To: linux-usb@vger.kernel.org, netdev@vger.kernel.org Subject: [PATCH 1/6] hso: Add Vendor/Product ID's for new devices Message-ID: <20100105145029.GA19825@raptor> MIME-Version: 1.0 Content-Disposition: inline Organization: Option User-Agent: Mutt/1.5.20 (2009-06-14) X-OriginalArrivalTime: 05 Jan 2010 14:50:31.0760 (UTC) FILETIME=[6DE48D00:01CA8E16] Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org From: Jan Dumon Add product ID's for new devices. Signed-off-by: Jan Dumon --- To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html --- linux-2.6.orig/drivers/net/usb/hso.c +++ linux-2.6/drivers/net/usb/hso.c @@ -461,10 +461,17 @@ static const struct usb_device_id hso_id {USB_DEVICE(0x0af0, 0x7501)}, /* GTM 382 */ {USB_DEVICE(0x0af0, 0x7601)}, /* GE40x */ {USB_DEVICE(0x0af0, 0x7701)}, + {USB_DEVICE(0x0af0, 0x7706)}, {USB_DEVICE(0x0af0, 0x7801)}, {USB_DEVICE(0x0af0, 0x7901)}, + {USB_DEVICE(0x0af0, 0x7A01)}, + {USB_DEVICE(0x0af0, 0x7A05)}, {USB_DEVICE(0x0af0, 0x8200)}, {USB_DEVICE(0x0af0, 0x8201)}, + {USB_DEVICE(0x0af0, 0x8300)}, + {USB_DEVICE(0x0af0, 0x8302)}, + {USB_DEVICE(0x0af0, 0x8304)}, + {USB_DEVICE(0x0af0, 0x8400)}, {USB_DEVICE(0x0af0, 0xd035)}, {USB_DEVICE(0x0af0, 0xd055)}, {USB_DEVICE(0x0af0, 0xd155)}, @@ -473,6 +480,8 @@ static const struct usb_device_id hso_id {USB_DEVICE(0x0af0, 0xd157)}, {USB_DEVICE(0x0af0, 0xd257)}, {USB_DEVICE(0x0af0, 0xd357)}, + {USB_DEVICE(0x0af0, 0xd058)}, + {USB_DEVICE(0x0af0, 0xc100)}, {} }; MODULE_DEVICE_TABLE(usb, hso_ids);