diff options
author | Michael Sevakis <jethead71@rockbox.org> | 2017-03-12 22:05:44 -0400 |
---|---|---|
committer | Michael Sevakis <jethead71@rockbox.org> | 2017-03-12 22:05:44 -0400 |
commit | 6db80020b45ae22b19524b01f60d0653d70ac7ca (patch) | |
tree | 924a9944abe38e094cdbc4b70d0489ed6bc162ce /firmware/drivers | |
parent | 70c929179b80e0657e31558e34d2bc62e1176564 (diff) |
Do some housekeeping with fat.h and SECTOR_SIZE
Many includes of fat.h are pointless. Some includes are just for
SECTOR_SIZE. Add a file 'firmware/include/fs_defines.h' for that
and to define tuneable values that were scattered amongst various
headers.
Remove some local definitions of SECTOR_SIZE since they have to be
in agreement with the rest of the fs code anyway.
(We'll see what's in fact pointless in a moment ;)
Change-Id: I9ba183bf58bd87f5c45eba7bd675c7e2c1c18ed5
Diffstat (limited to 'firmware/drivers')
-rw-r--r-- | firmware/drivers/ata.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/firmware/drivers/ata.c b/firmware/drivers/ata.c index b98567e8bf..b574117620 100644 --- a/firmware/drivers/ata.c +++ b/firmware/drivers/ata.c @@ -34,10 +34,9 @@ #include "ata_idle_notify.h" #include "ata-driver.h" #include "ata-defines.h" +#include "fs_defines.h" #include "storage.h" -#define SECTOR_SIZE 512 - #define SELECT_DEVICE1 0x10 #define SELECT_LBA 0x40 |