summaryrefslogtreecommitdiff
path: root/firmware/export/storage.h
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/export/storage.h')
-rw-r--r--firmware/export/storage.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/firmware/export/storage.h b/firmware/export/storage.h
index 78d3360ba9..52c6f2bed1 100644
--- a/firmware/export/storage.h
+++ b/firmware/export/storage.h
@@ -197,6 +197,7 @@ static inline int storage_spinup_time(void)
197#endif 197#endif
198} 198}
199 199
200#ifdef STORAGE_GET_INFO
200static inline void storage_get_info(IF_MV2(int drive,) struct storage_info *info) 201static inline void storage_get_info(IF_MV2(int drive,) struct storage_info *info)
201{ 202{
202#if (CONFIG_STORAGE & STORAGE_ATA) 203#if (CONFIG_STORAGE & STORAGE_ATA)
@@ -211,6 +212,7 @@ static inline void storage_get_info(IF_MV2(int drive,) struct storage_info *info
211 #error No storage driver! 212 #error No storage driver!
212#endif 213#endif
213} 214}
215#endif
214 216
215#ifdef HAVE_HOTSWAP 217#ifdef HAVE_HOTSWAP
216static inline bool storage_removable(IF_MV_NONVOID(int drive)) 218static inline bool storage_removable(IF_MV_NONVOID(int drive))
@@ -310,11 +312,13 @@ static inline int storage_spinup_time(void)
310 return 0; 312 return 0;
311} 313}
312 314
315#ifdef STORAGE_GET_INFO
313static inline void storage_get_info(IF_MV2(int drive,) struct storage_info *info) 316static inline void storage_get_info(IF_MV2(int drive,) struct storage_info *info)
314{ 317{
315 IF_MV((void)drive;) 318 IF_MV((void)drive;)
316 (void)info; 319 (void)info;
317} 320}
321#endif
318 322
319#ifdef HAVE_HOTSWAP 323#ifdef HAVE_HOTSWAP
320static inline bool storage_removable(IF_MV_NONVOID(int drive)) 324static inline bool storage_removable(IF_MV_NONVOID(int drive))