From 19eb800f75db9746435868ff6837b7b3b506ac0a Mon Sep 17 00:00:00 2001 From: Frank Gevaerts Date: Sat, 1 Nov 2008 17:33:21 +0000 Subject: conditionalise *_get_info() to get some binsize back git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18965 a1c6a512-1295-4272-9138-f99709370657 --- firmware/export/storage.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'firmware/export/storage.h') 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) #endif } +#ifdef STORAGE_GET_INFO static inline void storage_get_info(IF_MV2(int drive,) struct storage_info *info) { #if (CONFIG_STORAGE & STORAGE_ATA) @@ -211,6 +212,7 @@ static inline void storage_get_info(IF_MV2(int drive,) struct storage_info *info #error No storage driver! #endif } +#endif #ifdef HAVE_HOTSWAP static inline bool storage_removable(IF_MV_NONVOID(int drive)) @@ -310,11 +312,13 @@ static inline int storage_spinup_time(void) return 0; } +#ifdef STORAGE_GET_INFO static inline void storage_get_info(IF_MV2(int drive,) struct storage_info *info) { IF_MV((void)drive;) (void)info; } +#endif #ifdef HAVE_HOTSWAP static inline bool storage_removable(IF_MV_NONVOID(int drive)) -- cgit v1.2.3