summaryrefslogtreecommitdiff
path: root/firmware/storage.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/storage.c')
-rw-r--r--firmware/storage.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/storage.c b/firmware/storage.c
index ac4e35b66b..da3e06146d 100644
--- a/firmware/storage.c
+++ b/firmware/storage.c
@@ -343,7 +343,7 @@ int storage_init(void)
343 return rc; 343 return rc;
344} 344}
345 345
346int storage_read_sectors(IF_MD(int drive,) unsigned long start, int count, 346int storage_read_sectors(IF_MD(int drive,) sector_t start, int count,
347 void* buf) 347 void* buf)
348{ 348{
349#ifdef CONFIG_STORAGE_MULTI 349#ifdef CONFIG_STORAGE_MULTI
@@ -385,7 +385,7 @@ int storage_read_sectors(IF_MD(int drive,) unsigned long start, int count,
385 385
386} 386}
387 387
388int storage_write_sectors(IF_MD(int drive,) unsigned long start, int count, 388int storage_write_sectors(IF_MD(int drive,) sector_t start, int count,
389 const void* buf) 389 const void* buf)
390{ 390{
391#ifdef CONFIG_STORAGE_MULTI 391#ifdef CONFIG_STORAGE_MULTI