Commit 8783b344 authored by Ben Dooks's avatar Ben Dooks

[ARM] JIVE: fix spi gpio implementation

Fix the name of the driver, as well as the fact we are not
passing the number of chipselects to the driver.
Signed-off-by: default avatarBen Dooks <ben-linux@fluff.org>
parent 72aaf09f
...@@ -398,11 +398,12 @@ static struct s3c2410_spigpio_info jive_lcd_spi = { ...@@ -398,11 +398,12 @@ static struct s3c2410_spigpio_info jive_lcd_spi = {
.bus_num = 1, .bus_num = 1,
.pin_clk = S3C2410_GPG8, .pin_clk = S3C2410_GPG8,
.pin_mosi = S3C2410_GPB8, .pin_mosi = S3C2410_GPB8,
.num_chipselect = 1,
.chip_select = jive_lcd_spi_chipselect, .chip_select = jive_lcd_spi_chipselect,
}; };
static struct platform_device jive_device_lcdspi = { static struct platform_device jive_device_lcdspi = {
.name = "s3c24xx-spi-gpio", .name = "spi_s3c24xx_gpio",
.id = 1, .id = 1,
.num_resources = 0, .num_resources = 0,
.dev.platform_data = &jive_lcd_spi, .dev.platform_data = &jive_lcd_spi,
...@@ -419,11 +420,12 @@ static struct s3c2410_spigpio_info jive_wm8750_spi = { ...@@ -419,11 +420,12 @@ static struct s3c2410_spigpio_info jive_wm8750_spi = {
.bus_num = 2, .bus_num = 2,
.pin_clk = S3C2410_GPB4, .pin_clk = S3C2410_GPB4,
.pin_mosi = S3C2410_GPB9, .pin_mosi = S3C2410_GPB9,
.num_chipselect = 1,
.chip_select = jive_wm8750_chipselect, .chip_select = jive_wm8750_chipselect,
}; };
static struct platform_device jive_device_wm8750 = { static struct platform_device jive_device_wm8750 = {
.name = "s3c24xx-spi-gpio", .name = "spi_s3c24xx_gpio",
.id = 2, .id = 2,
.num_resources = 0, .num_resources = 0,
.dev.platform_data = &jive_wm8750_spi, .dev.platform_data = &jive_wm8750_spi,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment