diff options
author | Andrzej Pietrasiewicz <andrzej.p@samsung.com> | 2013-10-09 12:06:01 +0400 |
---|---|---|
committer | Felipe Balbi <balbi@ti.com> | 2013-10-10 19:24:04 +0400 |
commit | e5eaa0dc4866181aff655ef3f94cd990172b751f (patch) | |
tree | 4209782f1dd0deef8cdd1da46eee9fca1441c672 /drivers/usb/gadget/acm_ms.c | |
parent | 5de862d73b2c1b3fbb0ac8b45eb496d77347d1b8 (diff) | |
download | linux-e5eaa0dc4866181aff655ef3f94cd990172b751f.tar.xz |
usb: gadget: f_mass_storage: convert to new function interface with backward compatibility
Converting mass storage to the new function interface requires converting
the USB mass storage's function code and its users.
This patch converts the f_mass_storage.c to the new function interface.
The file is now compiled into a separate usb_f_mass_storage.ko module.
The old function interface is provided by means of a 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>
Acked-by: Michal Nazarewicz <mina86@mina86.com>
Signed-off-by: Felipe Balbi <balbi@ti.com>
Diffstat (limited to 'drivers/usb/gadget/acm_ms.c')
-rw-r--r-- | drivers/usb/gadget/acm_ms.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/usb/gadget/acm_ms.c b/drivers/usb/gadget/acm_ms.c index 992ffb00272f..31aae8fce426 100644 --- a/drivers/usb/gadget/acm_ms.c +++ b/drivers/usb/gadget/acm_ms.c @@ -40,6 +40,7 @@ * the runtime footprint, and giving us at least some parts of what * a "gcc --combine ... part1.c part2.c part3.c ... " build would. */ +#define USB_FMS_INCLUDED #include "f_mass_storage.c" /*-------------------------------------------------------------------------*/ |