From patchwork Tue Feb 5 16:55:31 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kamal Mostafa X-Patchwork-Id: 218296 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 269432C02CA for ; Wed, 6 Feb 2013 03:55:44 +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 1U2lnz-0000pa-GC; Tue, 05 Feb 2013 16:55:35 +0000 Received: from youngberry.canonical.com ([91.189.89.112]) by chlorine.canonical.com with esmtp (Exim 4.71) (envelope-from ) id 1U2lnw-0000pQ-UK for kernel-team@lists.ubuntu.com; Tue, 05 Feb 2013 16:55:32 +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 1U2lnw-0002zm-I5; Tue, 05 Feb 2013 16:55:32 +0000 Message-ID: <1360083331.3164.150.camel@fourier> Subject: [Raring][pull-request] alx Ethernet driver From: Kamal Mostafa To: kernel-team@lists.ubuntu.com Date: Tue, 05 Feb 2013 08:55:31 -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 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). Note: a Quantal SRU request for this will follow, pending inclusion in Raring. -Kamal -- >8 ------------------------ The following changes since commit 066ac1faa17d9d83b1cb7d9045b154af48469254: UBUNTU: [packaging] Remove dangling symlink from headers package (2013-02-05 09:05:44 -0700) are available in the git repository at: git://kernel.ubuntu.com/kamal/ubuntu-raring.git alx-import for you to fetch changes up to 7b796a6a8dd320e3614d4cef10ef519b64b7b892: UBUNTU: [Config] Add alx to d-i nic-modules (2013-02-05 08:31:42 -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 | 9 +- ubuntu/Makefile | 6 +- 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, 9383 insertions(+), 2 deletions(-) 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