summaryrefslogtreecommitdiffstats
path: root/drivers/usb/gadget/function/Makefile
diff options
context:
space:
mode:
authorAndrzej Pietrasiewicz2015-12-11 16:06:21 +0100
committerNicholas Bellinger2015-12-21 04:40:34 +0100
commitdc8c46a5ae770d3d763353e786990bc415bc5560 (patch)
tree43e25f84abad80011899ab00935bd748c2155da7 /drivers/usb/gadget/function/Makefile
parentusb: gadget: tcm: factor out f_tcm (diff)
downloadkernel-qcow2-linux-dc8c46a5ae770d3d763353e786990bc415bc5560.tar.gz
kernel-qcow2-linux-dc8c46a5ae770d3d763353e786990bc415bc5560.tar.xz
kernel-qcow2-linux-dc8c46a5ae770d3d763353e786990bc415bc5560.zip
usb: gadget: f_tcm: convert to new function interface with backward compatibility
Converting tcm to the new function interface requires converting USB tcm's function code and its users. This patch converts the f_tcm.c to the new function interface. The file can be now compiled into a separate module usb_f_tcm.ko. The old function interface is provided by means of preprocessor conditional directives. After all users are converted, the old interface can be removed. Signed-off-by: Andrzej Pietrasiewicz <andrzej.p@samsung.com> Acked-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> Signed-off-by: Nicholas Bellinger <nab@linux-iscsi.org>
Diffstat (limited to 'drivers/usb/gadget/function/Makefile')
-rw-r--r--drivers/usb/gadget/function/Makefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/usb/gadget/function/Makefile b/drivers/usb/gadget/function/Makefile
index bd7def576955..cb8c225e8549 100644
--- a/drivers/usb/gadget/function/Makefile
+++ b/drivers/usb/gadget/function/Makefile
@@ -44,3 +44,5 @@ usb_f_hid-y := f_hid.o
obj-$(CONFIG_USB_F_HID) += usb_f_hid.o
usb_f_printer-y := f_printer.o
obj-$(CONFIG_USB_F_PRINTER) += usb_f_printer.o
+usb_f_tcm-y := f_tcm.o
+obj-$(CONFIG_USB_F_TCM) += usb_f_tcm.o