summaryrefslogtreecommitdiff
path: root/firmware/export/mmc.h
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/export/mmc.h')
-rw-r--r--firmware/export/mmc.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/firmware/export/mmc.h b/firmware/export/mmc.h
index 8d20f81236..0d27e20a64 100644
--- a/firmware/export/mmc.h
+++ b/firmware/export/mmc.h
@@ -36,13 +36,13 @@ bool mmc_disk_is_active(void);
36int mmc_soft_reset(void); 36int mmc_soft_reset(void);
37int mmc_init(void) STORAGE_INIT_ATTR; 37int mmc_init(void) STORAGE_INIT_ATTR;
38void mmc_close(void); 38void mmc_close(void);
39int mmc_read_sectors(IF_MD2(int drive,) unsigned long start, int count, void* buf); 39int mmc_read_sectors(IF_MD(int drive,) unsigned long start, int count, void* buf);
40int mmc_write_sectors(IF_MD2(int drive,) unsigned long start, int count, const void* buf); 40int mmc_write_sectors(IF_MD(int drive,) unsigned long start, int count, const void* buf);
41void mmc_spin(void); 41void mmc_spin(void);
42int mmc_spinup_time(void); 42int mmc_spinup_time(void);
43 43
44#ifdef STORAGE_GET_INFO 44#ifdef STORAGE_GET_INFO
45void mmc_get_info(IF_MD2(int drive,) struct storage_info *info); 45void mmc_get_info(IF_MD(int drive,) struct storage_info *info);
46#endif 46#endif
47#ifdef HAVE_HOTSWAP 47#ifdef HAVE_HOTSWAP
48bool mmc_removable(IF_MD_NONVOID(int drive)); 48bool mmc_removable(IF_MD_NONVOID(int drive));