diff options
author | alex.bluesman.smirnov@gmail.com <alex.bluesman.smirnov@gmail.com> | 2012-08-26 01:10:11 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2012-08-30 13:23:56 -0400 |
commit | 0739d643b8dda866d1011bcfd01008d29593be03 (patch) | |
tree | 4748f4a416a6711bb5d6b889f9d3fa342921376f /drivers/net/ieee802154/Kconfig | |
parent | 395a57385508f7b8b445b6911bfa35bc0ccaa0ff (diff) |
drivers/ieee802154: move ieee802154 drivers to net folder
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>
Diffstat (limited to 'drivers/net/ieee802154/Kconfig')
-rw-r--r-- | drivers/net/ieee802154/Kconfig | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/drivers/net/ieee802154/Kconfig b/drivers/net/ieee802154/Kconfig new file mode 100644 index 000000000000..1fc4eefc20ed --- /dev/null +++ b/drivers/net/ieee802154/Kconfig | |||
@@ -0,0 +1,36 @@ | |||
1 | menuconfig IEEE802154_DRIVERS | ||
2 | tristate "IEEE 802.15.4 drivers" | ||
3 | depends on NETDEVICES && IEEE802154 | ||
4 | default y | ||
5 | ---help--- | ||
6 | Say Y here to get to see options for IEEE 802.15.4 Low-Rate | ||
7 | Wireless Personal Area Network device drivers. This option alone | ||
8 | does not add any kernel code. | ||
9 | |||
10 | If you say N, all options in this submenu will be skipped and | ||
11 | disabled. | ||
12 | |||
13 | config IEEE802154_FAKEHARD | ||
14 | tristate "Fake LR-WPAN driver with several interconnected devices" | ||
15 | depends on IEEE802154_DRIVERS | ||
16 | ---help--- | ||
17 | Say Y here to enable the fake driver that serves as an example | ||
18 | of HardMAC device driver. | ||
19 | |||
20 | This driver can also be built as a module. To do so say M here. | ||
21 | The module will be called 'fakehard'. | ||
22 | |||
23 | config IEEE802154_FAKELB | ||
24 | depends on IEEE802154_DRIVERS && MAC802154 | ||
25 | tristate "IEEE 802.15.4 loopback driver" | ||
26 | ---help--- | ||
27 | Say Y here to enable the fake driver that can emulate a net | ||
28 | of several interconnected radio devices. | ||
29 | |||
30 | This driver can also be built as a module. To do so say M here. | ||
31 | The module will be called 'fakelb'. | ||
32 | |||
33 | config IEEE802154_AT86RF230 | ||
34 | depends on IEEE802154_DRIVERS && MAC802154 | ||
35 | tristate "AT86RF230/231 transceiver driver" | ||
36 | depends on SPI | ||