summaryrefslogtreecommitdiffstats
path: root/target/linux/generic-2.6/patches-2.6.26/924-gpiommc_2.6.26_fix.patch
diff options
context:
space:
mode:
authorflorian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73>2009-05-07 12:21:02 +0000
committerflorian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73>2009-05-07 12:21:02 +0000
commit632405de28bcd2d910195f2cf94c6479df828554 (patch)
tree05c8594d9f3b173ad916bd2c6856cf4e79390f61 /target/linux/generic-2.6/patches-2.6.26/924-gpiommc_2.6.26_fix.patch
parent928c7cd41ce7e3314a75b3ce385c205e8a8e33f8 (diff)
[kernel] remove 2.6.26 since there are no remaining candidates for it
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@15666 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/generic-2.6/patches-2.6.26/924-gpiommc_2.6.26_fix.patch')
-rw-r--r--target/linux/generic-2.6/patches-2.6.26/924-gpiommc_2.6.26_fix.patch41
1 files changed, 0 insertions, 41 deletions
diff --git a/target/linux/generic-2.6/patches-2.6.26/924-gpiommc_2.6.26_fix.patch b/target/linux/generic-2.6/patches-2.6.26/924-gpiommc_2.6.26_fix.patch
deleted file mode 100644
index 44beff1f5..000000000
--- a/target/linux/generic-2.6/patches-2.6.26/924-gpiommc_2.6.26_fix.patch
+++ /dev/null
@@ -1,41 +0,0 @@
---- a/drivers/mmc/host/gpiommc.c
-+++ b/drivers/mmc/host/gpiommc.c
-@@ -8,11 +8,13 @@
- * Licensed under the GNU/GPL. See COPYING for details.
- */
-
--#include <linux/mmc/gpiommc.h>
- #include <linux/platform_device.h>
- #include <linux/list.h>
- #include <linux/mutex.h>
-+#include <linux/mmc/gpiommc.h>
-+#include <linux/mmc/host.h>
- #include <linux/spi/spi_gpio.h>
-+#include <linux/spi/mmc_spi.h>
- #include <linux/configfs.h>
- #include <linux/gpio.h>
- #include <asm/atomic.h>
-@@ -25,6 +27,7 @@ struct gpiommc_device {
- struct platform_device *pdev;
- struct platform_device *spi_pdev;
- struct spi_board_info boardinfo;
-+ struct mmc_spi_platform_data mmc_spi_data;
- };
-
-
-@@ -46,6 +49,7 @@ static int gpiommc_boardinfo_setup(struc
- bi->max_speed_hz = pdata->max_bus_speed;
- bi->bus_num = master->bus_num;
- bi->mode = pdata->mode;
-+ bi->platform_data = &d->mmc_spi_data;
-
- return 0;
- }
-@@ -75,6 +79,7 @@ static int gpiommc_probe(struct platform
- if (!d)
- goto error;
- d->pdev = pdev;
-+ d->mmc_spi_data.ocr_mask = MMC_VDD_32_33 | MMC_VDD_33_34;
-
- /* Create the SPI-GPIO device */
- d->spi_pdev = platform_device_alloc(SPI_GPIO_PLATDEV_NAME,