summaryrefslogtreecommitdiff
path: root/packages/uboot/u-boot-1.1.4/u-boot-mmc-init.patch
diff options
context:
space:
mode:
authorMichael Lauer <mickey@vanille-media.de>2007-12-28 13:10:28 +0000
committerMichael Lauer <mickey@vanille-media.de>2007-12-28 13:10:28 +0000
commitbe3e650d031916b132b4cef9d19e7844cca3440b (patch)
tree96dea5f2866a9c43bee966b9d01753467f19a9a3 /packages/uboot/u-boot-1.1.4/u-boot-mmc-init.patch
parent518fac47b16e548ace1e23d1bc6f4a38b44670bb (diff)
rename uboot directory for more consistency
Diffstat (limited to 'packages/uboot/u-boot-1.1.4/u-boot-mmc-init.patch')
-rw-r--r--packages/uboot/u-boot-1.1.4/u-boot-mmc-init.patch24
1 files changed, 0 insertions, 24 deletions
diff --git a/packages/uboot/u-boot-1.1.4/u-boot-mmc-init.patch b/packages/uboot/u-boot-1.1.4/u-boot-mmc-init.patch
deleted file mode 100644
index a18d4d3609..0000000000
--- a/packages/uboot/u-boot-1.1.4/u-boot-mmc-init.patch
+++ /dev/null
@@ -1,24 +0,0 @@
---- a/cpu/pxa/mmc.c
-+++ a/cpu/pxa/mmc.c
-@@ -401,16 +401,17 @@
-
- /* reset */
- retries = 10;
-- resp = mmc_cmd(0, 0, 0, 0);
-- resp = mmc_cmd(1, 0x00ff, 0xc000, MMC_CMDAT_INIT|MMC_CMDAT_BUSY|MMC_CMDAT_R3);
-+ resp = mmc_cmd(0, 0, 0, MMC_CMDAT_INIT|MMC_CMDAT_BUSY|MMC_CMDAT_R1);
-+ udelay(200000);
-+ resp = mmc_cmd(1, 0x00ff, 0x8000, MMC_CMDAT_BUSY|MMC_CMDAT_R3);
- while (retries-- && resp && !(resp[4] & 0x80)) {
- debug("resp %x %x\n", resp[0], resp[1]);
- #ifdef CONFIG_PXA27X
- udelay(10000);
- #else
-- udelay(50);
-+ udelay(200000);
- #endif
-- resp = mmc_cmd(1, 0x00ff, 0xff00, MMC_CMDAT_BUSY|MMC_CMDAT_R3);
-+ resp = mmc_cmd(1, 0x00ff, 0x8000, MMC_CMDAT_BUSY|MMC_CMDAT_R3);
- }
-
- /* try to get card id */