From patchwork Tue Feb 5 19:28:16 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kamal Mostafa X-Patchwork-Id: 218328 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 878EE2C02C7 for ; Wed, 6 Feb 2013 06:28:38 +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 1U2oBp-0005Xt-DC; Tue, 05 Feb 2013 19:28:21 +0000 Received: from youngberry.canonical.com ([91.189.89.112]) by chlorine.canonical.com with esmtp (Exim 4.71) (envelope-from ) id 1U2oBm-0005Xo-2y for kernel-team@lists.ubuntu.com; Tue, 05 Feb 2013 19:28:18 +0000 Received: from c-67-160-231-42.hsd1.ca.comcast.net ([67.160.231.42] helo=[192.168.1.7]) by youngberry.canonical.com with esmtpsa (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1U2oBl-0007Yy-NS; Tue, 05 Feb 2013 19:28:18 +0000 Message-ID: <1360092496.3164.178.camel@fourier> Subject: [Quantal SRU][pull-request] alx Ethernet driver From: Kamal Mostafa To: kernel-team@lists.ubuntu.com Date: Tue, 05 Feb 2013 11:28:16 -0800 X-Mailer: Evolution 3.6.2-0ubuntu1 Mime-Version: 1.0 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/927782 Import the upstream alx (Qualcomm Atheros) Ethernet driver into ubuntu/alx/. This import is from Adrian Chadd's alx repo on github: http://github.com/erikarn/alx (Adrian is taking care of alx while Luis is on holiday). -Kamal -- >8 ------------------------ The following changes since commit 9e7645702e08b9f9287dae29ec59c25d17d98b7d: UBUNTU: d-i: Add mellanox ethernet drivers to nic-modules (2013-02-05 10:48:28 -0700) are available in the git repository at: git://kernel.ubuntu.com/kamal/ubuntu-quantal.git alx-import for you to fetch changes up to bde4894681ae2062d686c29e3d74ff4ed1cac8bd: UBUNTU: [Config] Add alx to d-i nic-modules (2013-02-05 11:07:17 -0800) ---------------------------------------------------------------- Kamal Mostafa (1): UBUNTU: SAUCE: alx driver import script Qualcomm Atheros, Inc (1): UBUNTU: SAUCE: alx: Update to heads/master Tim Gardner (2): UBUNTU: [config] CONFIG_ALX=m UBUNTU: [Config] Add alx to d-i nic-modules debian.master/config/config.common.ubuntu | 1 + debian.master/d-i/modules/nic-modules | 1 + ubuntu/Kconfig | 4 + ubuntu/Makefile | 4 + ubuntu/alx/Kconfig | 18 + ubuntu/alx/LICENSE | 15 + ubuntu/alx/Makefile | 3 + ubuntu/alx/README.md | 60 + ubuntu/alx/alx.h | 213 +++ ubuntu/alx/alx_ethtool.c | 1802 ++++++++++++++++++ ubuntu/alx/alx_hw.c | 1461 +++++++++++++++ ubuntu/alx/alx_hw.h | 661 +++++++ ubuntu/alx/alx_main.c | 2818 +++++++++++++++++++++++++++++ ubuntu/alx/alx_reg.h | 2295 +++++++++++++++++++++++ ubuntu/alx/update.sh | 22 + 15 files changed, 9378 insertions(+) create mode 100644 ubuntu/alx/Kconfig create mode 100644 ubuntu/alx/LICENSE create mode 100644 ubuntu/alx/Makefile create mode 100644 ubuntu/alx/README.md create mode 100644 ubuntu/alx/alx.h create mode 100644 ubuntu/alx/alx_ethtool.c create mode 100644 ubuntu/alx/alx_hw.c create mode 100644 ubuntu/alx/alx_hw.h create mode 100644 ubuntu/alx/alx_main.c create mode 100644 ubuntu/alx/alx_reg.h create mode 100755 ubuntu/alx/update.sh