diff options
author | Stephen Warren | 2014-05-05 10:40:12 -0600 |
---|---|---|
committer | Lukasz Majewski | 2014-05-08 10:38:29 +0200 |
commit | c2474d9c718dea4f26067e85d356644a3aed26c2 (patch) | |
tree | 5153031c28b3df46738607a9bff2d4052c27b29e /include | |
parent | ce19d974018273c8f69d98b7139e7fef822cc02a (diff) |
ums: remove UMS_{NUM,START}_SECTORS + UMS_START_SECTOR
These values aren't set anywhere at present, and hence have no effect.
The concept of a single global offset/number of sectors to expose through
USB Mass Storage doesn't even make sense in the face of multiple storage
devices. Remove these defines to simplify the code.
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 | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/include/usb_mass_storage.h b/include/usb_mass_storage.h index e3eb1ebb2e4..2b959ec057e 100644 --- a/include/usb_mass_storage.h +++ b/include/usb_mass_storage.h @@ -12,14 +12,6 @@ #include <part.h> #include <linux/usb/composite.h> -#ifndef UMS_START_SECTOR -#define UMS_START_SECTOR 0 -#endif - -#ifndef UMS_NUM_SECTORS -#define UMS_NUM_SECTORS 0 -#endif - /* Wait at maximum 60 seconds for cable connection */ #define UMS_CABLE_READY_TIMEOUT 60 |