summaryrefslogtreecommitdiff
path: root/uisimulator
diff options
context:
space:
mode:
authorMichael Sevakis <jethead71@rockbox.org>2013-08-17 12:18:22 -0400
committerMichael Sevakis <jethead71@rockbox.org>2013-08-17 12:18:22 -0400
commita56f1ca1ed63b93eb61fd5319f47347b3eb1e364 (patch)
tree62a253ba44b23c1867cef59fee40b40092719ee1 /uisimulator
parentc13f21a4d5c27c638c9f0dedf6d7b1f9bbb4d682 (diff)
downloadrockbox-a56f1ca1ed63b93eb61fd5319f47347b3eb1e364.tar.gz
rockbox-a56f1ca1ed63b93eb61fd5319f47347b3eb1e364.zip
Cleanup MV/MD macros a little.
When using variadic macros there's no need for IF_MD2/IF_MV2 to deal with function parameters. IF_MD/IF_MV are enough. Throw in IF_MD_DRV/ID_MV_VOL that return the parameter if MD/MV, or 0 if not. Change-Id: I7605e6039f3be19cb47110c84dcb3c5516f2c3eb
Diffstat (limited to 'uisimulator')
-rw-r--r--uisimulator/common/io.c4
-rw-r--r--uisimulator/common/stubs.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/uisimulator/common/io.c b/uisimulator/common/io.c
index 7538788bd6..690ef39f5f 100644
--- a/uisimulator/common/io.c
+++ b/uisimulator/common/io.c
@@ -57,7 +57,7 @@
57#include "thread.h" 57#include "thread.h"
58#include "kernel.h" 58#include "kernel.h"
59#include "debug.h" 59#include "debug.h"
60#include "ata.h" /* for IF_MV2 et al. */ 60#include "ata.h" /* for IF_MV et al. */
61#include "rbpaths.h" 61#include "rbpaths.h"
62#include "load_code.h" 62#include "load_code.h"
63 63
@@ -534,7 +534,7 @@ long filesize(int fd)
534#endif 534#endif
535} 535}
536 536
537void fat_size(IF_MV2(int volume,) unsigned long* size, unsigned long* free) 537void fat_size(IF_MV(int volume,) unsigned long* size, unsigned long* free)
538{ 538{
539#ifdef HAVE_MULTIVOLUME 539#ifdef HAVE_MULTIVOLUME
540 if (volume != 0) { 540 if (volume != 0) {
diff --git a/uisimulator/common/stubs.c b/uisimulator/common/stubs.c
index 51706ca3d5..6ad0b986f3 100644
--- a/uisimulator/common/stubs.c
+++ b/uisimulator/common/stubs.c
@@ -169,7 +169,7 @@ int storage_init(void)
169 return 1; 169 return 1;
170} 170}
171 171
172int storage_write_sectors(IF_MV2(int drive,) 172int storage_write_sectors(IF_MV(int drive,)
173 unsigned long start, 173 unsigned long start,
174 int count, 174 int count,
175 const void* buf) 175 const void* buf)
@@ -197,7 +197,7 @@ int storage_write_sectors(IF_MV2(int drive,)
197 return 0; 197 return 0;
198} 198}
199 199
200int storage_read_sectors(IF_MV2(int drive,) 200int storage_read_sectors(IF_MV(int drive,)
201 unsigned long start, 201 unsigned long start,
202 int count, 202 int count,
203 void* buf) 203 void* buf)