@@ -53,9 +53,7 @@ static struct resource spi_resources[] = {
},
};
-static struct bcm63xx_spi_pdata spi_pdata = {
- .bus_num = 0,
-};
+static struct bcm63xx_spi_pdata spi_pdata;
static struct platform_device bcm63xx_spi_device = {
.name = "bcm63xx-spi",
@@ -11,7 +11,6 @@ struct bcm63xx_spi_pdata {
unsigned int fifo_size;
unsigned int msg_type_shift;
unsigned int msg_ctl_width;
- int bus_num;
};
enum bcm63xx_regs_spi {
@@ -32,6 +32,7 @@
#define BCM63XX_SPI_MAX_PREPEND 15
#define BCM63XX_SPI_MAX_CS 8
+#define BCM63XX_SPI_BUS_NUM 0
struct bcm63xx_spi {
struct completion done;
@@ -369,7 +370,7 @@ static int bcm63xx_spi_probe(struct platform_device *pdev)
goto out_err;
}
- master->bus_num = pdata->bus_num;
+ master->bus_num = BCM63XX_SPI_BUS_NUM;
master->num_chipselect = BCM63XX_SPI_MAX_CS;
master->transfer_one_message = bcm63xx_spi_transfer_one;
master->mode_bits = MODEBITS;
We always pass 0 as the spi bus number, so we might as well hard code it. Signed-off-by: Jonas Gorski <jogo@openwrt.org> --- v1 -> v2 * remove the platform data member as well. arch/mips/bcm63xx/dev-spi.c | 4 +--- arch/mips/include/asm/mach-bcm63xx/bcm63xx_dev_spi.h | 1 - drivers/spi/spi-bcm63xx.c | 3 ++- 3 files changed, 3 insertions(+), 5 deletions(-)