From patchwork Fri Mar 9 08:11:37 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Joerg Neikes X-Patchwork-Id: 145689 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 4F925B6EF3 for ; Fri, 9 Mar 2012 19:29:42 +1100 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753307Ab2CII3X (ORCPT ); Fri, 9 Mar 2012 03:29:23 -0500 Received: from mail.aixtema.de ([212.117.64.100]:36410 "EHLO mail.aixtema.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752601Ab2CII3W (ORCPT ); Fri, 9 Mar 2012 03:29:22 -0500 X-Greylist: delayed 1060 seconds by postgrey-1.27 at vger.kernel.org; Fri, 09 Mar 2012 03:29:22 EST Received: from localhost (localhost [127.0.0.1]) by mail.aixtema.de (Postfix) with ESMTP id E71A7E8CC6; Fri, 9 Mar 2012 09:11:39 +0100 (CET) Received: from mail.aixtema.de (localhost [127.0.0.1]) by localhost (AvMailGate-2.0.1.16) id 15379-2675F348; Fri, 09 Mar 2012 09:11:39 +0100 Received: from [10.8.0.6] (client6.aixvpn.prv [10.8.0.6]) by mail.aixtema.de (Postfix) with ESMTP id 40FDAE8CC6; Fri, 9 Mar 2012 09:11:38 +0100 (CET) Message-ID: <1331280697.5426.4.camel@mobile> Subject: Patch for Sitecom LN-031 From: Joerg Neikes To: Greg Kroah-Hartman , linux-usb@vger.kernel.org, netdev@vger.kernel.org, linux-kernel@vger.kernel.org Cc: linux-usb@vger.kernel.org Date: Fri, 09 Mar 2012 09:11:37 +0100 X-Mailer: Evolution 3.2.3 Mime-Version: 1.0 X-AntiVirus: checked by AntiVir MailGate (version: 2.0.1.16; AVE: 7.9.10.14; VDF: 7.11.24.248; host: mail.aixtema.de) Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org This patch adds support for the Sitecom LN-031 USB adapter with a AX88178 chip. Added USB id to find correct driver for AX88178 1000 Ethernet adapter. Signed-off-by: Joerg Neikes --- 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-3.2.6-gentoo/drivers/net/usb/asix.c 2012-02-14 14:54:11.079152551 +0100 +++ linux-3.2.9-gentoo/drivers/net/usb/asix.c 2012-03-09 00:01:34.657806558 +0100 @@ -1595,6 +1595,10 @@ static const struct usb_device_id produc USB_DEVICE (0x6189, 0x182d), .driver_info = (unsigned long) &ax8817x_info, }, { + // Sitecom LN-031 "USB 2.0 10/100/1000 Ethernet adapter" + USB_DEVICE (0x0df6, 0x0056), + .driver_info = (unsigned long) &ax88178_info, +}, { // corega FEther USB2-TX USB_DEVICE (0x07aa, 0x0017), .driver_info = (unsigned long) &ax8817x_info,