1
0
Fork 0
forked from len0rd/rockbox

quick fix for the e200v2 to skip the OF

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19067 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Jonathan Gordon 2008-11-10 13:01:46 +00:00
parent 59a9699027
commit 889b8c96da

View file

@ -519,8 +519,11 @@ int sd_read_sectors(IF_MV2(int drive,) unsigned long start, int incount,
int remaining = incount;
const unsigned long *fifo_base = MMC_FIFO(drive);
#if defined(SANSA_E200V2)
start += 61440;
#else
start += 20480; /* skip SanDisk OF */
#endif
/* TODO: Add DMA support. */
mutex_lock(&sd_mtx);