From 2ab64c91523b09d11316626cd66d0451f88b894f Mon Sep 17 00:00:00 2001 From: Jörg Hohensohn Date: Wed, 29 Dec 2004 22:50:34 +0000 Subject: cosmetic: use the IF_MV2() macro for optional arguments git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5521 a1c6a512-1295-4272-9138-f99709370657 --- firmware/drivers/ata_mmc.c | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/firmware/drivers/ata_mmc.c b/firmware/drivers/ata_mmc.c index d75309547f..ba79cc516a 100644 --- a/firmware/drivers/ata_mmc.c +++ b/firmware/drivers/ata_mmc.c @@ -609,9 +609,7 @@ static int send_single_sector(const unsigned char *buf, int timeout) } int ata_read_sectors( -#ifdef HAVE_MULTIVOLUME - int drive, -#endif + IF_MV2(int drive,) unsigned long start, int incount, void* inbuf) @@ -670,10 +668,7 @@ int ata_read_sectors( return ret; } -int ata_write_sectors( -#ifdef HAVE_MULTIVOLUME - int drive, -#endif +int ata_write_sectors(IF_MV2(int drive,) unsigned long start, int count, const void* buf) -- cgit v1.2.3