summaryrefslogtreecommitdiff
path: root/firmware/SOURCES
diff options
context:
space:
mode:
authorRafaël Carré <rafael.carre@gmail.com>2009-07-01 21:49:13 +0000
committerRafaël Carré <rafael.carre@gmail.com>2009-07-01 21:49:13 +0000
commitc0eb9aeb9e89ae33a9f084167147d8eacb9c7c60 (patch)
tree57e96460989d9cccc421486769befb5648601b8c /firmware/SOURCES
parent93f6e3df246ff50c24524c9d329f27a06e1845db (diff)
downloadrockbox-c0eb9aeb9e89ae33a9f084167147d8eacb9c7c60.tar.gz
rockbox-c0eb9aeb9e89ae33a9f084167147d8eacb9c7c60.zip
add firmware/driver/sd.c which contains common code between SD drivers
ingenic SD driver needs more cleanup so it still doesn't use the common code correct a comment in hotswap.c: card_extract_bits assume most significant word of register first (so, use this order) fix debug menu which used MMC specific commands / bits positions in csd/cid move the default block size of 512 into sd.h move the mantissa & exponent table into a single file (sd.c) to reduce binsize. we don't need to export it anymore anyway TODO : ingenic cleanup (will happen soon so building sd.c is not conditional) git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21601 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/SOURCES')
-rw-r--r--firmware/SOURCES2
1 files changed, 2 insertions, 0 deletions
diff --git a/firmware/SOURCES b/firmware/SOURCES
index 36f5070413..609521a4de 100644
--- a/firmware/SOURCES
+++ b/firmware/SOURCES
@@ -134,6 +134,8 @@ target/arm/ata-nand-telechips.c
134target/arm/s5l8700/ata-nand-s5l8700.c 134target/arm/s5l8700/ata-nand-s5l8700.c
135#elif (CONFIG_STORAGE & STORAGE_ATA) 135#elif (CONFIG_STORAGE & STORAGE_ATA)
136drivers/ata.c 136drivers/ata.c
137#elif (CONFIG_STORAGE & STORAGE_SD)
138drivers/sd.c
137#elif (CONFIG_STORAGE & STORAGE_RAMDISK) 139#elif (CONFIG_STORAGE & STORAGE_RAMDISK)
138drivers/ramdisk.c 140drivers/ramdisk.c
139#endif /* CONFIG_STORAGE */ 141#endif /* CONFIG_STORAGE */