drivers/ieee802154: move ieee802154 drivers to net folder
authoralex.bluesman.smirnov@gmail.com <alex.bluesman.smirnov@gmail.com>
Sun, 26 Aug 2012 05:10:11 +0000 (05:10 +0000)
committerDavid S. Miller <davem@davemloft.net>
Thu, 30 Aug 2012 17:23:56 +0000 (13:23 -0400)
The IEEE 802.15.4 standard represents a networking protocol. I don't
exactly know why drivers for this protocol are stored into the root
'driver' folder, but better will be to store them with other
networking stuff. Currently there are only 3 drivers available for
IEEE 802.15.4 stack, so lets do it now with the smallest overhead.

Signed-off-by: Alexander Smirnov <alex.bluesman.smirnov@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/Makefile
drivers/net/Kconfig
drivers/net/Makefile
drivers/net/ieee802154/Kconfig [moved from drivers/ieee802154/Kconfig with 100% similarity]
drivers/net/ieee802154/Makefile [moved from drivers/ieee802154/Makefile with 100% similarity]
drivers/net/ieee802154/at86rf230.c [moved from drivers/ieee802154/at86rf230.c with 100% similarity]
drivers/net/ieee802154/fakehard.c [moved from drivers/ieee802154/fakehard.c with 99% similarity]
drivers/net/ieee802154/fakelb.c [moved from drivers/ieee802154/fakelb.c with 100% similarity]

index 5b42184..1ecd1bf 100644 (file)
@@ -120,7 +120,6 @@ obj-$(CONFIG_VHOST_NET)             += vhost/
 obj-$(CONFIG_VLYNQ)            += vlynq/
 obj-$(CONFIG_STAGING)          += staging/
 obj-y                          += platform/
-obj-y                          += ieee802154/
 #common clk code
 obj-y                          += clk/
 
index 0c2bd80..707ab7b 100644 (file)
@@ -107,8 +107,6 @@ config MII
          or internal device.  It is safe to say Y or M here even if your
          ethernet card lacks MII.
 
-source "drivers/ieee802154/Kconfig"
-
 config IFB
        tristate "Intermediate Functional Block support"
        depends on NET_CLS_ACT
@@ -290,6 +288,8 @@ source "drivers/net/wimax/Kconfig"
 
 source "drivers/net/wan/Kconfig"
 
+source "drivers/net/ieee802154/Kconfig"
+
 config XEN_NETDEV_FRONTEND
        tristate "Xen network device frontend driver"
        depends on XEN
index 3d375ca..b682a1d 100644 (file)
@@ -53,6 +53,7 @@ obj-$(CONFIG_SUNGEM_PHY) += sungem_phy.o
 obj-$(CONFIG_WAN) += wan/
 obj-$(CONFIG_WLAN) += wireless/
 obj-$(CONFIG_WIMAX) += wimax/
+obj-$(CONFIG_IEEE802154) += ieee802154/
 
 obj-$(CONFIG_VMXNET3) += vmxnet3/
 obj-$(CONFIG_XEN_NETDEV_FRONTEND) += xen-netfront.o
similarity index 99%
rename from drivers/ieee802154/fakehard.c
rename to drivers/net/ieee802154/fakehard.c
index 73d4531..7d39add 100644 (file)
@@ -446,4 +446,3 @@ static __exit void fake_exit(void)
 module_init(fake_init);
 module_exit(fake_exit);
 MODULE_LICENSE("GPL");
-