summaryrefslogtreecommitdiff
path: root/firmware/export/mmc.h
diff options
context:
space:
mode:
authorRafaël Carré <rafael.carre@gmail.com>2009-07-17 16:34:34 +0000
committerRafaël Carré <rafael.carre@gmail.com>2009-07-17 16:34:34 +0000
commitbdb5974c0ef05ca548beabdd2ece0512a60024f9 (patch)
tree3d0fe4215ab3f1fdb2b0588f4d034e5d514874ea /firmware/export/mmc.h
parentcf9935d6362dd52e4b2f33dd19fff0a0860814d7 (diff)
downloadrockbox-bdb5974c0ef05ca548beabdd2ece0512a60024f9.tar.gz
rockbox-bdb5974c0ef05ca548beabdd2ece0512a60024f9.zip
Revert r21912 : "Storage API : remove undeeded target-specific functions"
After a discussion mixed on mailing list and irc, it was agreed that more abstraction for plugins is better (so developers don't have to add a check to HAVE_DISK_STORAGE when writing disk-specific code) git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21923 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/export/mmc.h')
-rw-r--r--firmware/export/mmc.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/firmware/export/mmc.h b/firmware/export/mmc.h
index bd4b7f93ec..06d99d219e 100644
--- a/firmware/export/mmc.h
+++ b/firmware/export/mmc.h
@@ -28,6 +28,8 @@
28struct storage_info; 28struct storage_info;
29 29
30void mmc_enable(bool on); 30void mmc_enable(bool on);
31void mmc_spindown(int seconds);
32void mmc_sleep(void);
31void mmc_sleepnow(void); 33void mmc_sleepnow(void);
32bool mmc_disk_is_active(void); 34bool mmc_disk_is_active(void);
33int mmc_soft_reset(void); 35int mmc_soft_reset(void);
@@ -35,6 +37,7 @@ int mmc_init(void);
35void mmc_close(void); 37void mmc_close(void);
36int mmc_read_sectors(IF_MV2(int drive,) unsigned long start, int count, void* buf); 38int mmc_read_sectors(IF_MV2(int drive,) unsigned long start, int count, void* buf);
37int mmc_write_sectors(IF_MV2(int drive,) unsigned long start, int count, const void* buf); 39int mmc_write_sectors(IF_MV2(int drive,) unsigned long start, int count, const void* buf);
40void mmc_spin(void);
38int mmc_spinup_time(void); 41int mmc_spinup_time(void);
39 42
40#ifdef STORAGE_GET_INFO 43#ifdef STORAGE_GET_INFO