From patchwork Tue Dec 11 20:25:16 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Chris J Arges X-Patchwork-Id: 205298 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from chlorine.canonical.com (chlorine.canonical.com [91.189.94.204]) by ozlabs.org (Postfix) with ESMTP id 9E4432C0080 for ; Wed, 12 Dec 2012 07:25:30 +1100 (EST) Received: from localhost ([127.0.0.1] helo=chlorine.canonical.com) by chlorine.canonical.com with esmtp (Exim 4.71) (envelope-from ) id 1TiWOG-0001GT-U5; Tue, 11 Dec 2012 20:25:20 +0000 Received: from youngberry.canonical.com ([91.189.89.112]) by chlorine.canonical.com with esmtp (Exim 4.71) (envelope-from ) id 1TiWOE-0001GN-9i for kernel-team@lists.ubuntu.com; Tue, 11 Dec 2012 20:25:18 +0000 Received: from cpe-70-124-70-187.austin.res.rr.com ([70.124.70.187] helo=[192.168.1.155]) by youngberry.canonical.com with esmtpsa (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1TiWOE-0001SY-4Q for kernel-team@lists.ubuntu.com; Tue, 11 Dec 2012 20:25:18 +0000 Message-ID: <50C796AC.6080207@canonical.com> Date: Tue, 11 Dec 2012 14:25:16 -0600 From: Chris J Arges User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:17.0) Gecko/17.0 Thunderbird/17.0 MIME-Version: 1.0 To: Ubuntu Kernel Team Subject: [precise/quantal][sru][patch] asix: Adds support for Lenovo 10/100 USB dongle. X-Enigmail-Version: 1.4.6 X-BeenThere: kernel-team@lists.ubuntu.com X-Mailman-Version: 2.1.13 Precedence: list List-Id: Kernel team discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: kernel-team-bounces@lists.ubuntu.com Errors-To: kernel-team-bounces@lists.ubuntu.com BugLink: http://bugs.launchpad.net/bugs/1087480 SRU Justification: Impact: Lenovo Carbon X1 has an asix USB networking driver that doesn't work on Precise and Quantal. By enabling this small backport, usb networking works. Fix: Backport upstream commit 66dc81ecd71332783c92fb170950d5ddb43da461. This commit is present in Raring. Testcase: Try booting Lenovo Carbon X1 and try asix USB networking driver. If we can test a valid connection and pass traffic then the test passes. --chris j arges From 3f186efd92ddfd978ff42f4306953bfaa413fdd7 Mon Sep 17 00:00:00 2001 From: Quinlan Pfiffer Date: Thu, 6 Dec 2012 17:14:50 -0600 Subject: [PATCH] asix: Adds support for Lenovo 10/100 USB dongle. BugLink: http://bugs.launchpad.net/bugs/1087480 This dongle ships with the X1 Carbon, and has an AX88772B usb to ethernet chip in it. Signed-off-by: Quinlan Pfiffer Signed-off-by: David S. Miller (backported from commit 66dc81ecd71332783c92fb170950d5ddb43da461) Signed-off-by: Chris J Arges --- drivers/net/usb/asix.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/drivers/net/usb/asix.c b/drivers/net/usb/asix.c index ebcb7d4..d603f51 100644 --- a/drivers/net/usb/asix.c +++ b/drivers/net/usb/asix.c @@ -1572,6 +1572,10 @@ static const struct usb_device_id products [] = { USB_DEVICE (0x04f1, 0x3008), .driver_info = (unsigned long) &ax8817x_info, }, { + // Lenovo U2L100P 10/100 + USB_DEVICE (0x17ef, 0x7203), + .driver_info = (unsigned long) &ax88772_info, +}, { // ASIX AX88772B 10/100 USB_DEVICE (0x0b95, 0x772b), .driver_info = (unsigned long) &ax88772_info, -- 1.8.0