summaryrefslogtreecommitdiff
path: root/firmware/export/sd.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/sd.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/sd.h')
-rw-r--r--firmware/export/sd.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/firmware/export/sd.h b/firmware/export/sd.h
index f100f3025f..d313a4c2e1 100644
--- a/firmware/export/sd.h
+++ b/firmware/export/sd.h
@@ -30,12 +30,15 @@
30struct storage_info; 30struct storage_info;
31 31
32void sd_enable(bool on); 32void sd_enable(bool on);
33void sd_spindown(int seconds);
34void sd_sleep(void);
33bool sd_disk_is_active(void); 35bool sd_disk_is_active(void);
34int sd_soft_reset(void); 36int sd_soft_reset(void);
35int sd_init(void); 37int sd_init(void);
36void sd_close(void); 38void sd_close(void);
37int sd_read_sectors(IF_MV2(int drive,) unsigned long start, int count, void* buf); 39int sd_read_sectors(IF_MV2(int drive,) unsigned long start, int count, void* buf);
38int sd_write_sectors(IF_MV2(int drive,) unsigned long start, int count, const void* buf); 40int sd_write_sectors(IF_MV2(int drive,) unsigned long start, int count, const void* buf);
41void sd_spin(void);
39 42
40#ifdef STORAGE_GET_INFO 43#ifdef STORAGE_GET_INFO
41void sd_get_info(IF_MV2(int drive,) struct storage_info *info); 44void sd_get_info(IF_MV2(int drive,) struct storage_info *info);