summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSolomon Peachy <pizza@shaftnet.org>2024-07-07 15:33:57 -0400
committerSolomon Peachy <pizza@shaftnet.org>2024-07-07 15:40:27 -0400
commit60c3fdbc11e990f34c2181214eede37679b29907 (patch)
tree63829d924110f0afd79765fae1da91c78c9169ee
parent5a2bd580cdd3d83daef3e5c0da1cf0b0236f1d05 (diff)
downloadrockbox-60c3fdbc11e990f34c2181214eede37679b29907.tar.gz
rockbox-60c3fdbc11e990f34c2181214eede37679b29907.zip
More red fixes:
* hostfs_removeable()/present() needed IF_MDVOID() in their prototypes * SIM_EXT_INSERTED/EXTRACTED are gated by HAVE_HOTSWAP Change-Id: Id8c688f3538db99586a4f5062c83466374451883
-rw-r--r--firmware/export/hostfs.h4
-rw-r--r--firmware/export/storage.h6
-rw-r--r--uisimulator/common/sim_tasks.c2
3 files changed, 6 insertions, 6 deletions
diff --git a/firmware/export/hostfs.h b/firmware/export/hostfs.h
index c0fe85236e..c59868110a 100644
--- a/firmware/export/hostfs.h
+++ b/firmware/export/hostfs.h
@@ -37,8 +37,8 @@ extern int hostfs_init(void);
37extern int hostfs_flush(void); 37extern int hostfs_flush(void);
38 38
39#ifdef HAVE_HOTSWAP 39#ifdef HAVE_HOTSWAP
40extern bool hostfs_removable(int drive); 40extern bool hostfs_removable(IF_MD_NONVOID(int drive));
41extern bool hostfs_present(int drive); 41extern bool hostfs_present(IF_MD_NONVOID(int drive));
42#endif 42#endif
43 43
44/* This has to be repeated here for now for sim's sake since HAVE_HOSTFS 44/* This has to be repeated here for now for sim's sake since HAVE_HOSTFS
diff --git a/firmware/export/storage.h b/firmware/export/storage.h
index b87b7d001f..b72cccc257 100644
--- a/firmware/export/storage.h
+++ b/firmware/export/storage.h
@@ -227,7 +227,7 @@ static inline void storage_sleep(void) {};
227 #define storage_last_disk_activity() mmc_last_disk_activity() 227 #define storage_last_disk_activity() mmc_last_disk_activity()
228 #define storage_spinup_time() 0 228 #define storage_spinup_time() 0
229 #define storage_get_identify() mmc_get_identify() 229 #define storage_get_identify() mmc_get_identify()
230 230
231 #ifdef STORAGE_GET_INFO 231 #ifdef STORAGE_GET_INFO
232 #define storage_get_info(drive, info) mmc_get_info(IF_MD(drive,) info) 232 #define storage_get_info(drive, info) mmc_get_info(IF_MD(drive,) info)
233 #endif 233 #endif
@@ -251,7 +251,7 @@ static inline void storage_sleep(void) {};
251 #define storage_last_disk_activity() nand_last_disk_activity() 251 #define storage_last_disk_activity() nand_last_disk_activity()
252 #define storage_spinup_time() 0 252 #define storage_spinup_time() 0
253 #define storage_get_identify() nand_get_identify() 253 #define storage_get_identify() nand_get_identify()
254 254
255 #ifdef STORAGE_GET_INFO 255 #ifdef STORAGE_GET_INFO
256 #define storage_get_info(drive, info) nand_get_info(IF_MD(drive,) info) 256 #define storage_get_info(drive, info) nand_get_info(IF_MD(drive,) info)
257 #endif 257 #endif
@@ -275,7 +275,7 @@ static inline void storage_sleep(void) {};
275 #define storage_last_disk_activity() ramdisk_last_disk_activity() 275 #define storage_last_disk_activity() ramdisk_last_disk_activity()
276 #define storage_spinup_time() 0 276 #define storage_spinup_time() 0
277 #define storage_get_identify() ramdisk_get_identify() 277 #define storage_get_identify() ramdisk_get_identify()
278 278
279 #ifdef STORAGE_GET_INFO 279 #ifdef STORAGE_GET_INFO
280 #define storage_get_info(drive, info) ramdisk_get_info(IF_MD(drive,) info) 280 #define storage_get_info(drive, info) ramdisk_get_info(IF_MD(drive,) info)
281 #endif 281 #endif
diff --git a/uisimulator/common/sim_tasks.c b/uisimulator/common/sim_tasks.c
index 6662b28767..ef67fd24ee 100644
--- a/uisimulator/common/sim_tasks.c
+++ b/uisimulator/common/sim_tasks.c
@@ -45,7 +45,7 @@ enum {
45 SIM_SCREENDUMP, 45 SIM_SCREENDUMP,
46 SIM_USB_INSERTED, 46 SIM_USB_INSERTED,
47 SIM_USB_EXTRACTED, 47 SIM_USB_EXTRACTED,
48#ifdef HAVE_MULTIDRIVE 48#ifdef HAVE_HOTSWAP
49 SIM_EXT_INSERTED, 49 SIM_EXT_INSERTED,
50 SIM_EXT_EXTRACTED, 50 SIM_EXT_EXTRACTED,
51#endif 51#endif