Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit de520b8b authored by Inaky Perez-Gonzalez's avatar Inaky Perez-Gonzalez Committed by David Vrabel
Browse files

uwb: add HWA radio controller driver



Add a driver for USB-connected UWB radio controllers (HWAs).

Signed-off-by: default avatarDavid Vrabel <david.vrabel@csr.com>
parent b6e06983
Loading
Loading
Loading
Loading
+12 −0
Original line number Diff line number Diff line
@@ -29,6 +29,18 @@ menuconfig UWB

if UWB

config UWB_HWA
	tristate "UWB Radio Control driver for WUSB-compliant USB dongles (HWA)"
	depends on USB
	help
	  This driver enables the radio controller for HWA USB
	  devices. HWA stands for Host Wire Adapter, and it is a UWB
	  Radio Controller connected to your system via USB. Most of
	  them come with a Wireless USB host controller also.

	  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_WHCI
        tristate "UWB Radio Control driver for WHCI-compliant cards"
        depends on PCI
+1 −0
Original line number Diff line number Diff line
obj-$(CONFIG_UWB)		+= uwb.o
obj-$(CONFIG_UWB_WHCI)		+= umc.o whci.o whc-rc.o
obj-$(CONFIG_UWB_HWA)		+= hwa-rc.o

uwb-objs :=		\
	address.o	\

drivers/uwb/hwa-rc.c

0 → 100644
+911 −0

File added.

Preview size limit exceeded, changes collapsed.