summaryrefslogtreecommitdiff
path: root/firmware/drivers/sd.c
diff options
context:
space:
mode:
authorMaurus Cuelenaere <mcuelenaere@gmail.com>2009-07-01 22:56:14 +0000
committerMaurus Cuelenaere <mcuelenaere@gmail.com>2009-07-01 22:56:14 +0000
commitccbd8f4f31ec7f2c2ca03d3ac57ccdb28afc132c (patch)
tree09070bb169014a428c53cff6d4d0f02f92a07ed3 /firmware/drivers/sd.c
parent90d7a8c4fce466ac1710549d3f54469c54fc73f3 (diff)
downloadrockbox-ccbd8f4f31ec7f2c2ca03d3ac57ccdb28afc132c.zip
rockbox-ccbd8f4f31ec7f2c2ca03d3ac57ccdb28afc132c.tar.gz
rockbox-ccbd8f4f31ec7f2c2ca03d3ac57ccdb28afc132c.tar.bz2
rockbox-ccbd8f4f31ec7f2c2ca03d3ac57ccdb28afc132c.tar.xz
* 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
Diffstat (limited to 'firmware/drivers/sd.c')
-rw-r--r--firmware/drivers/sd.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/firmware/drivers/sd.c b/firmware/drivers/sd.c
index 834d8a1..3e05b05 100644
--- a/firmware/drivers/sd.c
+++ b/firmware/drivers/sd.c
@@ -62,3 +62,16 @@ void sd_parse_csd(tCardInfo *card)
card->r2w_factor = card_extract_bits(card->csd, 28, 3);
}
+
+void sd_sleep(void)
+{
+}
+
+void sd_spin(void)
+{
+}
+
+void sd_spindown(int seconds)
+{
+ (void)seconds;
+}