Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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>

authored by

Michael Buesch and committed by
John W. Linville
3d0da751 99c4a780

+5 -5
+1 -1
drivers/net/wireless/b43/Makefile
··· 4 4 b43-y += phy_common.o 5 5 b43-y += phy_g.o 6 6 b43-y += phy_a.o 7 - b43-$(CONFIG_B43_NPHY) += nphy.o 7 + b43-$(CONFIG_B43_NPHY) += phy_n.o 8 8 b43-y += sysfs.o 9 9 b43-y += xmit.o 10 10 b43-y += lo.o
+1 -1
drivers/net/wireless/b43/main.c
··· 46 46 #include "debugfs.h" 47 47 #include "phy_common.h" 48 48 #include "phy_g.h" 49 - #include "nphy.h" 49 + #include "phy_n.h" 50 50 #include "dma.h" 51 51 #include "pio.h" 52 52 #include "sysfs.h"
+1 -1
drivers/net/wireless/b43/nphy.c drivers/net/wireless/b43/phy_n.c
··· 26 26 #include <linux/types.h> 27 27 28 28 #include "b43.h" 29 - #include "nphy.h" 29 + #include "phy_n.h" 30 30 #include "tables_nphy.h" 31 31 32 32
drivers/net/wireless/b43/nphy.h drivers/net/wireless/b43/phy_n.h
+1 -1
drivers/net/wireless/b43/phy_common.c
··· 29 29 #include "phy_common.h" 30 30 #include "phy_g.h" 31 31 #include "phy_a.h" 32 - #include "nphy.h" 32 + #include "phy_n.h" 33 33 #include "b43.h" 34 34 #include "main.h" 35 35
+1 -1
drivers/net/wireless/b43/tables_nphy.c
··· 25 25 #include "b43.h" 26 26 #include "tables_nphy.h" 27 27 #include "phy_common.h" 28 - #include "nphy.h" 28 + #include "phy_n.h" 29 29 30 30 31 31 struct b2055_inittab_entry {