fix yellow

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@25602 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Rafaël Carré 2010-04-12 10:25:49 +00:00
parent 2349cf5f44
commit 8a2187136f

View file

@ -906,8 +906,14 @@ int sd_write_sectors(IF_MD2(int drive,) unsigned long start, int count,
return -1;
#else
//return sd_transfer_sectors(IF_MD2(drive,) start, count, (void*)buf, true);
return -1; /* not working, seems to cause FIFO overruns */
#ifdef HAVE_MULTIDRIVE
(void)drive;
#endif
(void)start;
(void)count;
(void)buf;
return -1; /* not working, seems to cause FIFO overruns */
#endif /* defined(BOOTLOADER) */
}
#ifndef BOOTLOADER