1
0
Fork 0
forked from len0rd/rockbox

Apply FS#9500. This adds a storage_*() abstraction to replace ata_*(). To do that, it also introduces sd_*, nand_*, and mmc_*.

This should be a good first step to allow multi-driver targets, like the Elio (ATA/SD), or the D2 (NAND/SD).


git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18960 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Frank Gevaerts 2008-11-01 16:14:28 +00:00
parent 646cac0bde
commit 2f8a0081c6
64 changed files with 541 additions and 554 deletions

View file

@ -25,9 +25,9 @@
#include "kernel.h"
#include "string.h"
void register_ata_idle_func(ata_idle_notify function)
void register_storage_idle_func(storage_idle_notify function)
{
#if USING_ATA_CALLBACK
#if USING_STORAGE_CALLBACK
add_event(DISK_EVENT_SPINUP, true, function);
#else
function(); /* just call the function now */
@ -37,8 +37,8 @@ void register_ata_idle_func(ata_idle_notify function)
#endif
}
#if USING_ATA_CALLBACK
void unregister_ata_idle_func(ata_idle_notify func, bool run)
#if USING_STORAGE_CALLBACK
void unregister_storage_idle_func(storage_idle_notify func, bool run)
{
remove_event(DISK_EVENT_SPINUP, func);
@ -46,7 +46,7 @@ void unregister_ata_idle_func(ata_idle_notify func, bool run)
func();
}
bool call_ata_idle_notifys(bool force)
bool call_storage_idle_notifys(bool force)
{
static int lock_until = 0;