summaryrefslogtreecommitdiff
path: root/target/linux/pxa/patches/007-fix_verdex_pro_mmc_initialization.patch
diff options
context:
space:
mode:
authorGabor Juhos <juhosg@openwrt.org>2012-05-07 17:40:15 +0000
committerGabor Juhos <juhosg@openwrt.org>2012-05-07 17:40:15 +0000
commit6b5012ce1fa90c0be451e73fce5f545dd1cf185d (patch)
tree758e9a678f9881826bb73f2ce703e67cbd1a4840 /target/linux/pxa/patches/007-fix_verdex_pro_mmc_initialization.patch
parent1f1fd8616fad9169e0900d8da1fbf3d202d318a3 (diff)
downloadmtk-20170518-6b5012ce1fa90c0be451e73fce5f545dd1cf185d.zip
mtk-20170518-6b5012ce1fa90c0be451e73fce5f545dd1cf185d.tar.gz
mtk-20170518-6b5012ce1fa90c0be451e73fce5f545dd1cf185d.tar.bz2
pxa: remove 2.6.37 support
SVN-Revision: 31643
Diffstat (limited to 'target/linux/pxa/patches/007-fix_verdex_pro_mmc_initialization.patch')
-rw-r--r--target/linux/pxa/patches/007-fix_verdex_pro_mmc_initialization.patch30
1 files changed, 0 insertions, 30 deletions
diff --git a/target/linux/pxa/patches/007-fix_verdex_pro_mmc_initialization.patch b/target/linux/pxa/patches/007-fix_verdex_pro_mmc_initialization.patch
deleted file mode 100644
index 0f23328..0000000
--- a/target/linux/pxa/patches/007-fix_verdex_pro_mmc_initialization.patch
+++ /dev/null
@@ -1,30 +0,0 @@
-From 7169c68fec79e61549b8e9c0106dde88e4d1bf9d Mon Sep 17 00:00:00 2001
-From: Bobby Powers <rpowers@harttech.com>
-Date: Thu, 29 Oct 2009 15:39:45 -0400
-Subject: [PATCH] [ARM] pxa: fix Verdex Pro mmc initialization
-
-The MicroSD port doesn't have card detect, read-only switch
-support, and is continuously powered. Somewhere in the
-forward-porting this got lost in the structure initialization.
-
-Signed-off-by: Bobby Powers <rpowers@harttech.com>
----
- arch/arm/mach-pxa/gumstix-verdex.c | 7 +++++--
- 1 files changed, 5 insertions(+), 2 deletions(-)
-
---- a/arch/arm/mach-pxa/gumstix-verdex.c
-+++ b/arch/arm/mach-pxa/gumstix-verdex.c
-@@ -590,8 +590,11 @@ static int verdex_mci_init(struct device
- }
-
- static struct pxamci_platform_data verdex_mci_platform_data = {
-- .ocr_mask = MMC_VDD_32_33|MMC_VDD_33_34,
-- .init = verdex_mci_init,
-+ .ocr_mask = MMC_VDD_32_33|MMC_VDD_33_34,
-+ .init = verdex_mci_init,
-+ .gpio_card_detect = -1,
-+ .gpio_card_ro = -1,
-+ .gpio_power = -1,
- };
-
- static void __init verdex_mmc_init(void)