mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-12 08:09:56 +00:00
spi/bcm63xx: hardcode busnum to 0
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> Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
6505999730
commit
a45fcea5b2
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user