diff options
author | Stephen Warren | 2014-05-05 10:40:15 -0600 |
---|---|---|
committer | Lukasz Majewski | 2014-05-08 10:38:29 +0200 |
commit | abfe8afe88d6d8219602659f44981411e1daeb1d (patch) | |
tree | 4d7a2b9854e83f171026dda4b3f041f08acd092a /include | |
parent | 36ff05c4f968bf71713644413d64850e48b34145 (diff) |
ums: move IO support code to common location
There's nothing Samsung-/board-specfic about the implementation of
ums_init(). Move the code into cmd_usb_mass_storage.c, so that it can
be shared by any user of that command.
Cc: Lukasz Majewski <l.majewski@samsung.com>
Signed-off-by: Stephen Warren <swarren@nvidia.com>
Acked-by: Przemyslaw Marczak <p.marczak@samsung.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/usb_mass_storage.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/usb_mass_storage.h b/include/usb_mass_storage.h index 2b959ec057e..69b80cd1a36 100644 --- a/include/usb_mass_storage.h +++ b/include/usb_mass_storage.h @@ -30,7 +30,6 @@ extern struct ums *ums; int fsg_init(struct ums *); void fsg_cleanup(void); -struct ums *ums_init(unsigned int); int fsg_main_thread(void *); int fsg_add(struct usb_configuration *c); #endif /* __USB_MASS_STORAGE_H__ */ |