diff options
author | Frank Gevaerts <frank@gevaerts.be> | 2008-11-02 02:19:39 +0000 |
---|---|---|
committer | Frank Gevaerts <frank@gevaerts.be> | 2008-11-02 02:19:39 +0000 |
commit | 99d39f5c3a4ffb89d849e2f425b903ccc5751d31 (patch) | |
tree | 0ced358dc1a87790136df59d9f1758113cd99523 /uisimulator/common/stubs.c | |
parent | 8d68a567e448975f56a24dad60191d2e3788cb1a (diff) | |
download | rockbox-99d39f5c3a4ffb89d849e2f425b903ccc5751d31.tar.gz rockbox-99d39f5c3a4ffb89d849e2f425b903ccc5751d31.zip |
put stubs in the proper place
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18978 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'uisimulator/common/stubs.c')
-rw-r--r-- | uisimulator/common/stubs.c | 36 |
1 files changed, 16 insertions, 20 deletions
diff --git a/uisimulator/common/stubs.c b/uisimulator/common/stubs.c index 7b630eb25b..169ce06067 100644 --- a/uisimulator/common/stubs.c +++ b/uisimulator/common/stubs.c @@ -33,7 +33,7 @@ #include "ata.h" /* for volume definitions */ extern char having_new_lcd; -static bool ata_spinning = false; +static bool storage_spinning = false; #if CONFIG_CODEC != SWCODEC void audio_set_buffer_margin(int seconds) @@ -53,7 +53,12 @@ bool fat_ismounted(int volume) return true; } -int ata_write_sectors(IF_MV2(int drive,) +int storage_init(void) +{ + return 1; +} + +int storage_write_sectors(IF_MV2(int drive,) unsigned long start, int count, const void* buf) @@ -75,7 +80,7 @@ int ata_write_sectors(IF_MV2(int drive,) return 1; } -int ata_read_sectors(IF_MV2(int drive,) +int storage_read_sectors(IF_MV2(int drive,) unsigned long start, int count, void* buf) @@ -98,34 +103,25 @@ int ata_read_sectors(IF_MV2(int drive,) return 1; } -void ata_delayed_write(unsigned long sector, const void* buf) -{ - ata_write_sectors(IF_MV2(0,) sector, 1, buf); -} - -void ata_flush(void) -{ -} - -void ata_spin(void) +void storage_spin(void) { - ata_spinning = true; + storage_spinning = true; } -void ata_sleep(void) +void storage_sleep(void) { - DEBUGF("ata_sleep()\n"); + DEBUGF("storage_sleep()\n"); } -bool ata_disk_is_active(void) +bool storage_disk_is_active(void) { - return ata_spinning; + return storage_spinning; } -void ata_spindown(int s) +void storage_spindown(int s) { (void)s; - ata_spinning = false; + storage_spinning = false; } void rtc_init(void) |