diff options
author | Andrzej Pietrasiewicz <andrzej.p@samsung.com> | 2013-03-21 18:33:42 +0400 |
---|---|---|
committer | Felipe Balbi <balbi@ti.com> | 2013-04-03 15:43:35 +0400 |
commit | 1d8fc2518c1cddef0902b0a2c51946732a0982fc (patch) | |
tree | 82c5c070b7fc699c7f1dad0de2ef37b000357ab9 /drivers/usb/gadget/Makefile | |
parent | 0b6a1e6ff7e62a1ab5a8924bffb12c17c183308a (diff) | |
download | linux-1d8fc2518c1cddef0902b0a2c51946732a0982fc.tar.xz |
usb: gadget: f_obex: convert to new function interface with backward compatibility
Converting f_obex to the new function interface requires converting
the f_obex's function code and its users.
This patch converts the f_obex.c to the new function interface.
The file is now compiled into a separate usb_f_obex.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 34bb49a131e9..6afd16659e78 100644 --- a/drivers/usb/gadget/Makefile +++ b/drivers/usb/gadget/Makefile @@ -43,6 +43,8 @@ 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_f_obex-y := f_obex.o +obj-$(CONFIG_USB_F_OBEX) += usb_f_obex.o # # USB gadget drivers |