1
0
Fork 0
forked from len0rd/rockbox

fuze+: add more clocking code, add dma code, add ssp code, add stub usb code, update storage to SD + MMC, beginning of the driver

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30010 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Amaury Pouly 2011-06-17 22:30:58 +00:00
parent d4800fa385
commit 2cf3313382
15 changed files with 1069 additions and 4 deletions

View file

@ -18,7 +18,10 @@
* KIND, either express or implied.
*
****************************************************************************/
#include "config.h"
#include "system.h"
#include "sd.h"
#include "sdmmc.h"
int sd_init(void)
{
@ -45,4 +48,15 @@ int sd_write_sectors(IF_MD2(int drive,) unsigned long start, int count,
return -1;
}
tCardInfo *card_get_info_target(int card_no)
{
(void)card_no;
return NULL;
}
int sd_num_drives(int first_drive)
{
(void) first_drive;
return 0;
}