diff options
author | Andrzej Pietrasiewicz <andrzej.p@samsung.com> | 2013-03-18 09:52:57 +0100 |
---|---|---|
committer | Felipe Balbi <balbi@ti.com> | 2013-04-03 13:43:33 +0200 |
commit | 60540ea2c51fa4feb475f689adce56297cb52010 (patch) | |
tree | a9e0d34def7bed8b18b590592d8623563bb20dde /drivers/usb/gadget/Makefile | |
parent | usb: gadget: nokia: remove unused include (diff) | |
download | linux-60540ea2c51fa4feb475f689adce56297cb52010.tar.xz linux-60540ea2c51fa4feb475f689adce56297cb52010.zip |
usb: gadget: f_serial: convert to new function interface with backward compatibility
Converting f_serial to the new function interface requires converting
the f_serial's function code and its users.
This patch converts the f_serial.c to the new function interface.
The file is now compiled into a separate usb_f_serial.ko module.
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>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
Signed-off-by: Felipe Balbi <balbi@ti.com>
Diffstat (limited to 'drivers/usb/gadget/Makefile')
-rw-r--r-- | drivers/usb/gadget/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/usb/gadget/Makefile b/drivers/usb/gadget/Makefile index b938e06382b7..34bb49a131e9 100644 --- a/drivers/usb/gadget/Makefile +++ b/drivers/usb/gadget/Makefile @@ -41,6 +41,8 @@ obj-$(CONFIG_USB_F_ACM) += usb_f_acm.o usb_f_ss_lb-y := f_loopback.o f_sourcesink.o obj-$(CONFIG_USB_F_SS_LB) += usb_f_ss_lb.o obj-$(CONFIG_USB_U_SERIAL) += u_serial.o +usb_f_serial-y := f_serial.o +obj-$(CONFIG_USB_F_SERIAL) += usb_f_serial.o # # USB gadget drivers |