1
0
Fork 0
forked from len0rd/rockbox

as3525v2: clarify the comment about write support

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@25594 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Rafaël Carré 2010-04-11 18:18:24 +00:00
parent f54ce55bce
commit 5a8b5f1ebf

View file

@ -896,8 +896,7 @@ int sd_read_sectors(IF_MD2(int drive,) unsigned long start, int count,
int sd_write_sectors(IF_MD2(int drive,) unsigned long start, int count,
const void* buf)
{
#if 1 /* disabled until stable*/ \
|| defined(BOOTLOADER) /* we don't need write support in bootloader */
#if defined(BOOTLOADER) /* we don't need write support in bootloader */
#ifdef HAVE_MULTIDRIVE
(void) drive;
#endif
@ -906,7 +905,8 @@ int sd_write_sectors(IF_MD2(int drive,) unsigned long start, int count,
(void) buf;
return -1;
#else
return sd_transfer_sectors(IF_MD2(drive,) start, count, (void*)buf, true);
//return sd_transfer_sectors(IF_MD2(drive,) start, count, (void*)buf, true);
return -1; /* not working, seems to cause FIFO overruns */
#endif
}