mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-11-09 13:12:37 -05:00
storage: rename MAX_LOG_SECTOR_SIZE to MAX_VIRT_SECTOR_SIZE
Change-Id: I34f00748c1b0935d65af5f0fc6bdd13356ff31e1
This commit is contained in:
parent
7ecab006c0
commit
bc6c189dcb
15 changed files with 38 additions and 38 deletions
|
|
@ -197,7 +197,7 @@
|
|||
|
||||
/* The fuze+ actually interesting partition table does not use 512-byte sector
|
||||
* (usually 2048 logical sector size) */
|
||||
#define MAX_LOG_SECTOR_SIZE 2048
|
||||
#define MAX_VIRT_SECTOR_SIZE 2048
|
||||
|
||||
/* Define this if you have adjustable CPU frequency */
|
||||
#define HAVE_ADJUSTABLE_CPU_FREQ
|
||||
|
|
|
|||
|
|
@ -187,7 +187,7 @@
|
|||
|
||||
/* The ZEN X-Fi Style actually interesting partition table does not use 512-byte sector
|
||||
* (usually 2048 logical sector size) */
|
||||
#define MAX_LOG_SECTOR_SIZE 2048
|
||||
#define MAX_VIRT_SECTOR_SIZE 2048
|
||||
|
||||
/* Define this if you have adjustable CPU frequency */
|
||||
#define HAVE_ADJUSTABLE_CPU_FREQ
|
||||
|
|
|
|||
|
|
@ -192,7 +192,7 @@
|
|||
#define HAVE_ATA_SMART
|
||||
|
||||
/* define this if the device has larger sectors when accessed via USB */
|
||||
#define MAX_LOG_SECTOR_SIZE 4096
|
||||
#define MAX_VIRT_SECTOR_SIZE 4096
|
||||
|
||||
/* This is the minimum access size for the device, even if it's larger than the logical sector size */
|
||||
#define MAX_PHYS_SECTOR_SIZE 4096
|
||||
|
|
|
|||
|
|
@ -215,7 +215,7 @@
|
|||
|
||||
/* define this if the device has larger sectors when accessed via USB */
|
||||
/* (only relevant in disk.c, fat.c now always supports large virtual sectors) */
|
||||
#define MAX_LOG_SECTOR_SIZE 2048
|
||||
#define MAX_VIRT_SECTOR_SIZE 2048
|
||||
|
||||
/* define this if the hard drive uses large physical sectors (ATA-7 feature) */
|
||||
/* and doesn't handle them in the drive firmware */
|
||||
|
|
|
|||
|
|
@ -198,7 +198,7 @@
|
|||
|
||||
/* The fuze+ actually interesting partition table does not use 512-byte sector
|
||||
* (usually 2048 logical sector size) */
|
||||
#define MAX_LOG_SECTOR_SIZE 2048
|
||||
#define MAX_VIRT_SECTOR_SIZE 2048
|
||||
|
||||
/* Define this if you have adjustable CPU frequency */
|
||||
#define HAVE_ADJUSTABLE_CPU_FREQ
|
||||
|
|
|
|||
|
|
@ -168,7 +168,7 @@
|
|||
|
||||
/* The fuze+ actually interesting partition table does not use 512-byte sector
|
||||
* (usually 2048 logical sector size) */
|
||||
#define MAX_LOG_SECTOR_SIZE 2048
|
||||
#define MAX_VIRT_SECTOR_SIZE 2048
|
||||
|
||||
/* Define this if you have adjustable CPU frequency */
|
||||
#define HAVE_ADJUSTABLE_CPU_FREQ
|
||||
|
|
|
|||
|
|
@ -168,7 +168,7 @@
|
|||
|
||||
/* The fuze+ actually interesting partition table does not use 512-byte sector
|
||||
* (usually 2048 logical sector size) */
|
||||
#define MAX_LOG_SECTOR_SIZE 2048
|
||||
#define MAX_VIRT_SECTOR_SIZE 2048
|
||||
|
||||
/* Define this if you have adjustable CPU frequency */
|
||||
#define HAVE_ADJUSTABLE_CPU_FREQ
|
||||
|
|
|
|||
|
|
@ -48,7 +48,7 @@ int disk_unmount_all(void);
|
|||
int disk_unmount(int drive);
|
||||
|
||||
/* Used when the drive's logical sector size is smaller than the sector size used by the partition table and filesystem. Notably needed for ipod 5.5G/6G. */
|
||||
#ifdef MAX_LOG_SECTOR_SIZE
|
||||
#ifdef MAX_VIRT_SECTOR_SIZE
|
||||
int disk_get_sector_multiplier(IF_MD_NONVOID(int drive));
|
||||
#endif
|
||||
/* The size of the drive's smallest addressible unit */
|
||||
|
|
|
|||
|
|
@ -170,9 +170,9 @@ int fat_mount(IF_MV(int volume,) IF_MD(int drive,) unsigned long startsector);
|
|||
int fat_unmount(IF_MV_NONVOID(int volume));
|
||||
|
||||
/** Debug screen stuff **/
|
||||
#ifdef MAX_LOG_SECTOR_SIZE
|
||||
#ifdef MAX_VIRT_SECTOR_SIZE
|
||||
int fat_get_bytes_per_sector(IF_MV_NONVOID(int volume));
|
||||
#endif /* MAX_LOG_SECTOR_SIZE */
|
||||
#endif /* MAX_VIRT_SECTOR_SIZE */
|
||||
unsigned int fat_get_cluster_size(IF_MV_NONVOID(int volume));
|
||||
void fat_recalc_free(IF_MV_NONVOID(int volume));
|
||||
bool fat_size(IF_MV(int volume,) sector_t *size, sector_t *free);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue