f1fa035f2b
Simplify the sysfs ABI of the wusb-cbaf (Cable Based Association) driver: use one value per file and cause the write of the CHID to fetch the CDID (instead of requiring a separate read). Update the example wusb-cbaf script to work with this revised ABI. Signed-off-by: Felipe Zimmerle <felipe.zimmerle@indt.org.br> Signed-off-by: David Vrabel <david.vrabel@csr.com>
26 lines
419 B
Makefile
26 lines
419 B
Makefile
obj-$(CONFIG_USB_WUSB) += wusbcore.o
|
|
obj-$(CONFIG_USB_HWA_HCD) += wusb-wa.o
|
|
obj-$(CONFIG_USB_WUSB_CBAF) += wusb-cbaf.o
|
|
|
|
|
|
wusbcore-objs := \
|
|
crypto.o \
|
|
devconnect.o \
|
|
dev-sysfs.o \
|
|
mmc.o \
|
|
pal.o \
|
|
rh.o \
|
|
reservation.o \
|
|
security.o \
|
|
wusbhc.o
|
|
|
|
wusb-cbaf-objs := cbaf.o
|
|
|
|
wusb-wa-objs := wa-hc.o \
|
|
wa-nep.o \
|
|
wa-rpipe.o \
|
|
wa-xfer.o
|
|
|
|
ifeq ($(CONFIG_USB_WUSB_CBAF_DEBUG),y)
|
|
EXTRA_CFLAGS += -DDEBUG
|
|
endif
|