uwb: add WiMedia LLC Protocol (build system)
authorGreg Kroah-Hartman <gregkh@suse.de>
Wed, 17 Sep 2008 15:34:19 +0000 (16:34 +0100)
committerDavid Vrabel <dv02@dv02pc01.europe.root.pri>
Wed, 17 Sep 2008 15:54:28 +0000 (16:54 +0100)
Add the WLP build system (Kconfig and Kbuild files).

Signed-off-by: David Vrabel <david.vrabel@csr.com>
drivers/uwb/Kconfig
drivers/uwb/Makefile
drivers/uwb/wlp/Makefile [new file with mode: 0644]

index a442f39..41f8984 100644 (file)
@@ -57,4 +57,11 @@ config UWB_WHCI
           To compile this driver select Y (built in) or M (module). It
           is safe to select any even if you do not have the hardware.
 
+config UWB_WLP
+       tristate "Support WiMedia Link Protocol (Ethernet/IP over UWB)"
+       depends on UWB && NET
+       help
+         This is a common library for drivers that implement
+         networking over UWB.
+
 endif # UWB
index 6bdb8e7..79f48e3 100644 (file)
@@ -1,4 +1,5 @@
 obj-$(CONFIG_UWB)              += uwb.o
+obj-$(CONFIG_UWB_WLP)          += wlp/
 obj-$(CONFIG_UWB_WHCI)         += umc.o whci.o whc-rc.o
 obj-$(CONFIG_UWB_HWA)          += hwa-rc.o
 
diff --git a/drivers/uwb/wlp/Makefile b/drivers/uwb/wlp/Makefile
new file mode 100644 (file)
index 0000000..c72c11d
--- /dev/null
@@ -0,0 +1,10 @@
+obj-$(CONFIG_UWB_WLP) := wlp.o
+
+wlp-objs :=    \
+       driver.o        \
+       eda.o           \
+       messages.o      \
+       sysfs.o         \
+       txrx.o          \
+       wlp-lc.o        \
+       wss-lc.o