aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Buesch <mb@bu3sch.de>2008-08-29 20:27:19 -0400
committerJohn W. Linville <linville@tuxdriver.com>2008-09-05 16:17:43 -0400
commit3d0da7516441d41dbfcc2b2667d9b792d580e50b (patch)
tree7df000ba564c88f215acdf31a47c2d8b7e9e8378
parent99c4a780624da24d20309f2be5abe5ef8d20fcc0 (diff)
b43: Move code from nphy.* to phy_n.*
Sourcecode files for PHY code are named by phy_XXX.{c,h} where XXX is the PHY type. Move the N-PHY code to match the other files. Signed-off-by: Michael Buesch <mb@bu3sch.de> Signed-off-by: John W. Linville <linville@tuxdriver.com>
-rw-r--r--drivers/net/wireless/b43/Makefile2
-rw-r--r--drivers/net/wireless/b43/main.c2
-rw-r--r--drivers/net/wireless/b43/phy_common.c2
-rw-r--r--drivers/net/wireless/b43/phy_n.c (renamed from drivers/net/wireless/b43/nphy.c)2
-rw-r--r--drivers/net/wireless/b43/phy_n.h (renamed from drivers/net/wireless/b43/nphy.h)0
-rw-r--r--drivers/net/wireless/b43/tables_nphy.c2
6 files changed, 5 insertions, 5 deletions
diff --git a/drivers/net/wireless/b43/Makefile b/drivers/net/wireless/b43/Makefile
index fb6ffce03f0..7fe49034ff2 100644
--- a/drivers/net/wireless/b43/Makefile
+++ b/drivers/net/wireless/b43/Makefile
@@ -4,7 +4,7 @@ b43-$(CONFIG_B43_NPHY) += tables_nphy.o
4b43-y += phy_common.o 4b43-y += phy_common.o
5b43-y += phy_g.o 5b43-y += phy_g.o
6b43-y += phy_a.o 6b43-y += phy_a.o
7b43-$(CONFIG_B43_NPHY) += nphy.o 7b43-$(CONFIG_B43_NPHY) += phy_n.o
8b43-y += sysfs.o 8b43-y += sysfs.o
9b43-y += xmit.o 9b43-y += xmit.o
10b43-y += lo.o 10b43-y += lo.o
diff --git a/drivers/net/wireless/b43/main.c b/drivers/net/wireless/b43/main.c
index 2d915c1a82a..fda9492d588 100644
--- a/drivers/net/wireless/b43/main.c
+++ b/drivers/net/wireless/b43/main.c
@@ -46,7 +46,7 @@
46#include "debugfs.h" 46#include "debugfs.h"
47#include "phy_common.h" 47#include "phy_common.h"
48#include "phy_g.h" 48#include "phy_g.h"
49#include "nphy.h" 49#include "phy_n.h"
50#include "dma.h" 50#include "dma.h"
51#include "pio.h" 51#include "pio.h"
52#include "sysfs.h" 52#include "sysfs.h"
diff --git a/drivers/net/wireless/b43/phy_common.c b/drivers/net/wireless/b43/phy_common.c
index 5a550a7af2e..4b6c944be04 100644
--- a/drivers/net/wireless/b43/phy_common.c
+++ b/drivers/net/wireless/b43/phy_common.c
@@ -29,7 +29,7 @@
29#include "phy_common.h" 29#include "phy_common.h"
30#include "phy_g.h" 30#include "phy_g.h"
31#include "phy_a.h" 31#include "phy_a.h"
32#include "nphy.h" 32#include "phy_n.h"
33#include "b43.h" 33#include "b43.h"
34#include "main.h" 34#include "main.h"
35 35
diff --git a/drivers/net/wireless/b43/nphy.c b/drivers/net/wireless/b43/phy_n.c
index 4cfeab8560f..8162fd7792f 100644
--- a/drivers/net/wireless/b43/nphy.c
+++ b/drivers/net/wireless/b43/phy_n.c
@@ -26,7 +26,7 @@
26#include <linux/types.h> 26#include <linux/types.h>
27 27
28#include "b43.h" 28#include "b43.h"
29#include "nphy.h" 29#include "phy_n.h"
30#include "tables_nphy.h" 30#include "tables_nphy.h"
31 31
32 32
diff --git a/drivers/net/wireless/b43/nphy.h b/drivers/net/wireless/b43/phy_n.h
index 3d1f65ed201..3d1f65ed201 100644
--- a/drivers/net/wireless/b43/nphy.h
+++ b/drivers/net/wireless/b43/phy_n.h
diff --git a/drivers/net/wireless/b43/tables_nphy.c b/drivers/net/wireless/b43/tables_nphy.c
index 1de2c2e2e14..4e233631554 100644
--- a/drivers/net/wireless/b43/tables_nphy.c
+++ b/drivers/net/wireless/b43/tables_nphy.c
@@ -25,7 +25,7 @@
25#include "b43.h" 25#include "b43.h"
26#include "tables_nphy.h" 26#include "tables_nphy.h"
27#include "phy_common.h" 27#include "phy_common.h"
28#include "nphy.h" 28#include "phy_n.h"
29 29
30 30
31struct b2055_inittab_entry { 31struct b2055_inittab_entry {