* Move some more stuff to the general SD driver

* Ingenic SD driver: cleanup DMA part a bit (not working yet)


git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21606 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Maurus Cuelenaere 2009-07-01 22:56:14 +00:00
parent 90d7a8c4fc
commit ccbd8f4f31
4 changed files with 49 additions and 81 deletions

View file

@ -790,19 +790,6 @@ int sd_write_sectors(IF_MV2(int drive,) unsigned long start, int count,
}
#ifndef BOOTLOADER
void sd_sleep(void)
{
}
void sd_spin(void)
{
}
void sd_spindown(int seconds)
{
(void)seconds;
}
long sd_last_disk_activity(void)
{
return last_disk_activity;

View file

@ -1372,16 +1372,3 @@ bool sd_present(IF_MV_NONVOID(int drive))
return (card_info[drive].initialized && card_info[drive].numblocks > 0);
}
#endif
void sd_sleep(void)
{
}
void sd_spin(void)
{
}
void sd_spindown(int seconds)
{
(void)seconds;
}