summaryrefslogtreecommitdiffstats
path: root/target/linux/pxa/patches-2.6.21/042-gumstix-pxa270-mmc.patch
diff options
context:
space:
mode:
authorkaloz <kaloz@3c298f89-4303-0410-b956-a3cf2f4a3e73>2010-02-09 00:11:50 +0000
committerkaloz <kaloz@3c298f89-4303-0410-b956-a3cf2f4a3e73>2010-02-09 00:11:50 +0000
commitd4db749fd7871921ff4a6aeb6e9631c641851998 (patch)
treea1637f5df5b2c6175a4c8b17f73d0f7808361fa7 /target/linux/pxa/patches-2.6.21/042-gumstix-pxa270-mmc.patch
parented2d03fdee38a559d628e947cb23ef46a04f16f8 (diff)
[pxa]: upgrade to 2.6.32.7, switch to squashfs, remove broken flag
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@19562 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/pxa/patches-2.6.21/042-gumstix-pxa270-mmc.patch')
-rw-r--r--target/linux/pxa/patches-2.6.21/042-gumstix-pxa270-mmc.patch31
1 files changed, 0 insertions, 31 deletions
diff --git a/target/linux/pxa/patches-2.6.21/042-gumstix-pxa270-mmc.patch b/target/linux/pxa/patches-2.6.21/042-gumstix-pxa270-mmc.patch
deleted file mode 100644
index 02fddd64b..000000000
--- a/target/linux/pxa/patches-2.6.21/042-gumstix-pxa270-mmc.patch
+++ /dev/null
@@ -1,31 +0,0 @@
---- a/arch/arm/mach-pxa/gumstix.c
-+++ b/arch/arm/mach-pxa/gumstix.c
-@@ -33,8 +33,9 @@
-
- static struct pxamci_platform_data gumstix_mci_platform_data;
-
--static int gumstix_mci_init(struct device *dev, irqreturn_t (*gumstix_detect_int)(int, void *, struct pt_regs *), void *data)
-+static int gumstix_mci_init(struct device *dev, irq_handler_t gumstix_detect_int, void *data)
- {
-+#ifndef CONFIG_ARCH_GUMSTIX_VERDEX
- int err;
-
- pxa_gpio_mode(GPIO6_MMCCLK_MD);
-@@ -55,6 +56,17 @@ static int gumstix_mci_init(struct devic
- }
-
- err = set_irq_type(GUMSTIX_IRQ_GPIO_nSD_DETECT, IRQT_BOTHEDGE);
-+#else
-+ // Setup GPIOs for MMC on the 120-pin connector
-+ // There is no card detect on a uSD connector so no interrupt to register
-+ // There is no WP detect GPIO line either
-+ pxa_gpio_mode(GPIO92_MMCDAT0_MD);
-+ pxa_gpio_mode(GPIO112_MMCCMD_MD);
-+ pxa_gpio_mode(GPIO110_MMCDAT2_MD);
-+ pxa_gpio_mode(GPIO111_MMCDAT3_MD);
-+ pxa_gpio_mode(GPIO109_MMCDAT1_MD);
-+ pxa_gpio_mode(GPIO32_MMCCLK_MD);
-+#endif
-
- return 0;
- }