netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Jay Cliburn <jacliburn@bellsouth.net>
To: netdev@vger.kernel.org
Cc: Jay Cliburn <jacliburn@bellsouth.net>, Chris Snook <csnook@redhat.com>
Subject: [PATCH 01/26] atl1: relocate atl1 driver to /drivers/net/atlx
Date: Mon, 31 Dec 2007 20:22:28 -0600	[thread overview]
Message-ID: <1199154173-4058-2-git-send-email-jacliburn@bellsouth.net> (raw)
In-Reply-To: <1199154173-4058-1-git-send-email-jacliburn@bellsouth.net>

In preparation for a future Atheros L2 NIC driver (called atl2), relocate
the atl1 driver into a new /drivers/net/atlx directory that will ultimately
be shared with the future atl2 driver.

Signed-off-by: Chris Snook <csnook@redhat.com>
Signed-off-by: Jay Cliburn <jacliburn@bellsouth.net>
---
 drivers/net/Makefile                      |    2 +-
 drivers/net/{atl1 => atlx}/Makefile       |    0 
 drivers/net/{atl1 => atlx}/atl1.h         |    0 
 drivers/net/{atl1 => atlx}/atl1_ethtool.c |    0 
 drivers/net/{atl1 => atlx}/atl1_hw.c      |    0 
 drivers/net/{atl1 => atlx}/atl1_hw.h      |    0 
 drivers/net/{atl1 => atlx}/atl1_main.c    |    0 
 drivers/net/{atl1 => atlx}/atl1_param.c   |    0 
 8 files changed, 1 insertions(+), 1 deletions(-)
 rename drivers/net/{atl1 => atlx}/Makefile (100%)
 rename drivers/net/{atl1 => atlx}/atl1.h (100%)
 rename drivers/net/{atl1 => atlx}/atl1_ethtool.c (100%)
 rename drivers/net/{atl1 => atlx}/atl1_hw.c (100%)
 rename drivers/net/{atl1 => atlx}/atl1_hw.h (100%)
 rename drivers/net/{atl1 => atlx}/atl1_main.c (100%)
 rename drivers/net/{atl1 => atlx}/atl1_param.c (100%)

diff --git a/drivers/net/Makefile b/drivers/net/Makefile
index 0e5fde4..14acf84 100644
--- a/drivers/net/Makefile
+++ b/drivers/net/Makefile
@@ -13,7 +13,7 @@ obj-$(CONFIG_CHELSIO_T1) += chelsio/
 obj-$(CONFIG_CHELSIO_T3) += cxgb3/
 obj-$(CONFIG_EHEA) += ehea/
 obj-$(CONFIG_BONDING) += bonding/
-obj-$(CONFIG_ATL1) += atl1/
+obj-$(CONFIG_ATL1) += atlx/
 obj-$(CONFIG_GIANFAR) += gianfar_driver.o
 obj-$(CONFIG_TEHUTI) += tehuti.o
 
diff --git a/drivers/net/atl1/Makefile b/drivers/net/atlx/Makefile
similarity index 100%
rename from drivers/net/atl1/Makefile
rename to drivers/net/atlx/Makefile
diff --git a/drivers/net/atl1/atl1.h b/drivers/net/atlx/atl1.h
similarity index 100%
rename from drivers/net/atl1/atl1.h
rename to drivers/net/atlx/atl1.h
diff --git a/drivers/net/atl1/atl1_ethtool.c b/drivers/net/atlx/atl1_ethtool.c
similarity index 100%
rename from drivers/net/atl1/atl1_ethtool.c
rename to drivers/net/atlx/atl1_ethtool.c
diff --git a/drivers/net/atl1/atl1_hw.c b/drivers/net/atlx/atl1_hw.c
similarity index 100%
rename from drivers/net/atl1/atl1_hw.c
rename to drivers/net/atlx/atl1_hw.c
diff --git a/drivers/net/atl1/atl1_hw.h b/drivers/net/atlx/atl1_hw.h
similarity index 100%
rename from drivers/net/atl1/atl1_hw.h
rename to drivers/net/atlx/atl1_hw.h
diff --git a/drivers/net/atl1/atl1_main.c b/drivers/net/atlx/atl1_main.c
similarity index 100%
rename from drivers/net/atl1/atl1_main.c
rename to drivers/net/atlx/atl1_main.c
diff --git a/drivers/net/atl1/atl1_param.c b/drivers/net/atlx/atl1_param.c
similarity index 100%
rename from drivers/net/atl1/atl1_param.c
rename to drivers/net/atlx/atl1_param.c
-- 
1.5.3.3


  reply	other threads:[~2008-01-01  2:23 UTC|newest]

Thread overview: 30+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-01-01  2:22 [PATCH 00/26] atl1: divide and modernize Jay Cliburn
2008-01-01  2:22 ` Jay Cliburn [this message]
2008-01-01  2:22 ` [PATCH 02/26] atl1: move common functions to atlx files Jay Cliburn
2008-01-01  2:22 ` [PATCH 03/26] atl1: fix broken TSO Jay Cliburn
2008-01-01  2:22 ` [PATCH 04/26] atl1: add ethtool register dump Jay Cliburn
2008-01-01  2:22 ` [PATCH 05/26] atl1: print debug info if rrd error Jay Cliburn
2008-01-01  2:22 ` [PATCH 06/26] atl1: update initialization parameters Jay Cliburn
2008-01-01  2:22 ` [PATCH 07/26] atl1: clarify max rx frame size Jay Cliburn
2008-01-01  2:22 ` [PATCH 08/26] atl1: additional DMA engine configuration Jay Cliburn
2008-01-01  2:22 ` [PATCH 09/26] atl1: refactor tx processing Jay Cliburn
2008-01-01  2:22 ` [PATCH 10/26] atl1: use csum_start Jay Cliburn
2008-01-01  2:22 ` [PATCH 11/26] atl1: refactor initialization and startup Jay Cliburn
2008-01-01  2:22 ` [PATCH 12/26] atl1: refactor atl1_probe Jay Cliburn
2008-01-01  2:22 ` [PATCH 13/26] atl1: refactor interrupt handling Jay Cliburn
2008-01-01  2:22 ` [PATCH 14/26] atl1: move stray defines to header file Jay Cliburn
2008-01-01  2:22 ` [PATCH 15/26] atl1: tidy up ring management Jay Cliburn
2008-01-01  2:22 ` [PATCH 16/26] atl1: modernize check link function Jay Cliburn
2008-01-01  2:22 ` [PATCH 17/26] atl1: update phy config function Jay Cliburn
2008-01-01  2:22 ` [PATCH 18/26] atl1: make function static Jay Cliburn
2008-01-01  2:22 ` [PATCH 19/26] atl1: modernize down/up functions Jay Cliburn
2008-01-01  2:22 ` [PATCH 20/26] atl1: update change mtu Jay Cliburn
2008-01-01  2:22 ` [PATCH 21/26] atl1: update atl1_close Jay Cliburn
2008-01-01  2:22 ` [PATCH 22/26] atl1: update netpoll Jay Cliburn
2008-01-01  2:22 ` [PATCH 23/26] atl1: update shutdown and remove functions Jay Cliburn
2008-01-01  2:22 ` [PATCH 24/26] atl1: update wake-on-lan Jay Cliburn
2008-01-01  2:22 ` [PATCH 25/26] atl1: add NAPI support Jay Cliburn
2008-01-01  5:58   ` Stephen Hemminger
2008-01-01  2:22 ` [PATCH 26/26] atl1: remove experimental tag and clean up comments Jay Cliburn
2008-01-01 17:58 ` [PATCH 00/26] atl1: divide and modernize Christoph Hellwig
2008-01-01 18:12   ` Jay Cliburn

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1199154173-4058-2-git-send-email-jacliburn@bellsouth.net \
    --to=jacliburn@bellsouth.net \
    --cc=csnook@redhat.com \
    --cc=netdev@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).