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:
parent
d4800fa385
commit
2cf3313382
15 changed files with 1069 additions and 4 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue