diff options
author | Imre Kaloz <kaloz@openwrt.org> | 2009-06-23 13:38:43 +0000 |
---|---|---|
committer | Imre Kaloz <kaloz@openwrt.org> | 2009-06-23 13:38:43 +0000 |
commit | 03c5b7d96af72455957b1b7f3518f6a1c44e92a5 (patch) | |
tree | e7c288c699907442ac8823d927b3f5a9b32204d5 /target/linux/ixp4xx/patches-2.6.27/310-gtwx5717_spi_bus.patch | |
parent | aafcab83642e9ab1cc53dc37f3494db7e350634e (diff) | |
download | mtk-20170518-03c5b7d96af72455957b1b7f3518f6a1c44e92a5.zip mtk-20170518-03c5b7d96af72455957b1b7f3518f6a1c44e92a5.tar.gz mtk-20170518-03c5b7d96af72455957b1b7f3518f6a1c44e92a5.tar.bz2 |
2.6.28 and 2.6.30 support is enough on ixp4xx
SVN-Revision: 16545
Diffstat (limited to 'target/linux/ixp4xx/patches-2.6.27/310-gtwx5717_spi_bus.patch')
-rw-r--r-- | target/linux/ixp4xx/patches-2.6.27/310-gtwx5717_spi_bus.patch | 53 |
1 files changed, 0 insertions, 53 deletions
diff --git a/target/linux/ixp4xx/patches-2.6.27/310-gtwx5717_spi_bus.patch b/target/linux/ixp4xx/patches-2.6.27/310-gtwx5717_spi_bus.patch deleted file mode 100644 index 550b54f..0000000 --- a/target/linux/ixp4xx/patches-2.6.27/310-gtwx5717_spi_bus.patch +++ /dev/null @@ -1,53 +0,0 @@ ---- a/arch/arm/mach-ixp4xx/gtwx5715-setup.c -+++ b/arch/arm/mach-ixp4xx/gtwx5715-setup.c -@@ -29,6 +29,8 @@ - #include <linux/serial_8250.h> - #include <linux/slab.h> - -+#include <linux/spi/spi_gpio.h> -+ - #include <asm/types.h> - #include <asm/setup.h> - #include <asm/memory.h> -@@ -121,9 +123,41 @@ static struct platform_device gtwx5715_f - .resource = >wx5715_flash_resource, - }; - -+static int gtwx5715_spi_boardinfo_setup(struct spi_board_info *bi, -+ struct spi_master *master, void *data) -+{ -+ -+ strlcpy(bi->modalias, "spi-ks8995", sizeof(bi->modalias)); -+ -+ bi->max_speed_hz = 5000000 /* Hz */; -+ bi->bus_num = master->bus_num; -+ bi->mode = SPI_MODE_0; -+ -+ return 0; -+} -+ -+static struct spi_gpio_platform_data gtwx5715_spi_bus_data = { -+ .pin_cs = GTWX5715_KSSPI_SELECT, -+ .pin_clk = GTWX5715_KSSPI_CLOCK, -+ .pin_miso = GTWX5715_KSSPI_RXD, -+ .pin_mosi = GTWX5715_KSSPI_TXD, -+ .cs_activelow = 1, -+ .no_spi_delay = 1, -+ .boardinfo_setup = gtwx5715_spi_boardinfo_setup, -+}; -+ -+static struct platform_device gtwx5715_spi_bus = { -+ .name = "spi-gpio", -+ .id = 0, -+ .dev = { -+ .platform_data = >wx5715_spi_bus_data, -+ }, -+}; -+ - static struct platform_device *gtwx5715_devices[] __initdata = { - >wx5715_uart_device, - >wx5715_flash, -+ >wx5715_spi_bus, - }; - - static void __init gtwx5715_init(void) |