aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/kirkwood/patches-3.3/002-mvsdio_delay.patch
diff options
context:
space:
mode:
authorLuka Perkov <luka@openwrt.org>2013-10-14 19:46:45 +0000
committerLuka Perkov <luka@openwrt.org>2013-10-14 19:46:45 +0000
commitad7564142d6eec6100652ee33ee6b2d8c5f1a124 (patch)
tree2fa443cd411cf53548fd89847cbc38f4468872ef /target/linux/kirkwood/patches-3.3/002-mvsdio_delay.patch
parentc15bec4a1b1763523a7758a8be526195386fe36c (diff)
downloadupstream-ad7564142d6eec6100652ee33ee6b2d8c5f1a124.tar.gz
upstream-ad7564142d6eec6100652ee33ee6b2d8c5f1a124.tar.bz2
upstream-ad7564142d6eec6100652ee33ee6b2d8c5f1a124.zip
kirkwood: drop 3.3.x kernel version
Signed-off-by: Luka Perkov <luka@openwrt.org> SVN-Revision: 38404
Diffstat (limited to 'target/linux/kirkwood/patches-3.3/002-mvsdio_delay.patch')
-rw-r--r--target/linux/kirkwood/patches-3.3/002-mvsdio_delay.patch32
1 files changed, 0 insertions, 32 deletions
diff --git a/target/linux/kirkwood/patches-3.3/002-mvsdio_delay.patch b/target/linux/kirkwood/patches-3.3/002-mvsdio_delay.patch
deleted file mode 100644
index 46e2a5646c..0000000000
--- a/target/linux/kirkwood/patches-3.3/002-mvsdio_delay.patch
+++ /dev/null
@@ -1,32 +0,0 @@
---- a/drivers/mmc/core/sd.c
-+++ b/drivers/mmc/core/sd.c
-@@ -389,6 +389,15 @@ int mmc_sd_switch_hs(struct mmc_card *ca
- return -ENOMEM;
- }
-
-+ /*
-+ * Some SDHC cards, notably those with a Sandisk SD controller
-+ * (also found in Kingston products) need a bit of slack
-+ * before successfully handling the SWITCH command. So far,
-+ * cards identifying themselves as "SD04G" and "SD08G" are
-+ * affected
-+ */
-+ udelay(1000);
-+
- err = mmc_sd_switch(card, 1, 0, 1, status);
- if (err)
- goto out;
---- a/drivers/mmc/core/core.c
-+++ b/drivers/mmc/core/core.c
-@@ -529,9 +529,9 @@ void mmc_set_data_timeout(struct mmc_dat
- * The limit is really 250 ms, but that is
- * insufficient for some crappy cards.
- */
-- limit_us = 300000;
-+ limit_us = 500000;
- else
-- limit_us = 100000;
-+ limit_us = 200000;
-
- /*
- * SDHC cards always use these fixed values.