aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
Diffstat (limited to 'drivers')
-rw-r--r--drivers/uwb/Kconfig7
-rw-r--r--drivers/uwb/Makefile1
-rw-r--r--drivers/uwb/wlp/Makefile10
3 files changed, 18 insertions, 0 deletions
diff --git a/drivers/uwb/Kconfig b/drivers/uwb/Kconfig
index a442f39f354c..41f8984d1984 100644
--- a/drivers/uwb/Kconfig
+++ b/drivers/uwb/Kconfig
@@ -57,4 +57,11 @@ config UWB_WHCI
57 To compile this driver select Y (built in) or M (module). It 57 To compile this driver select Y (built in) or M (module). It
58 is safe to select any even if you do not have the hardware. 58 is safe to select any even if you do not have the hardware.
59 59
60config UWB_WLP
61 tristate "Support WiMedia Link Protocol (Ethernet/IP over UWB)"
62 depends on UWB && NET
63 help
64 This is a common library for drivers that implement
65 networking over UWB.
66
60endif # UWB 67endif # UWB
diff --git a/drivers/uwb/Makefile b/drivers/uwb/Makefile
index 6bdb8e7f91ce..79f48e3d4ec6 100644
--- a/drivers/uwb/Makefile
+++ b/drivers/uwb/Makefile
@@ -1,4 +1,5 @@
1obj-$(CONFIG_UWB) += uwb.o 1obj-$(CONFIG_UWB) += uwb.o
2obj-$(CONFIG_UWB_WLP) += wlp/
2obj-$(CONFIG_UWB_WHCI) += umc.o whci.o whc-rc.o 3obj-$(CONFIG_UWB_WHCI) += umc.o whci.o whc-rc.o
3obj-$(CONFIG_UWB_HWA) += hwa-rc.o 4obj-$(CONFIG_UWB_HWA) += hwa-rc.o
4 5
diff --git a/drivers/uwb/wlp/Makefile b/drivers/uwb/wlp/Makefile
new file mode 100644
index 000000000000..c72c11db5b1b
--- /dev/null
+++ b/drivers/uwb/wlp/Makefile
@@ -0,0 +1,10 @@
1obj-$(CONFIG_UWB_WLP) := wlp.o
2
3wlp-objs := \
4 driver.o \
5 eda.o \
6 messages.o \
7 sysfs.o \
8 txrx.o \
9 wlp-lc.o \
10 wss-lc.o