diff options
| author | Andrey Smirnov <[email protected]> | 2019-04-03 04:01:26 +0000 |
|---|---|---|
| committer | Mark Brown <[email protected]> | 2019-04-03 04:32:25 +0000 |
| commit | 703b476695237dda54233d2dadb37d2d49de23cf (patch) | |
| tree | 628abd9073ee675dd27a924153dd48b61db52dc3 /drivers/spi/spi-gpio.c | |
| parent | spi: gpio: Simplify SPI_MASTER_NO_TX check in spi_gpio_probe() (diff) | |
| download | kernel-703b476695237dda54233d2dadb37d2d49de23cf.tar.gz kernel-703b476695237dda54233d2dadb37d2d49de23cf.zip | |
spi: gpio: Drop unused pdata copy in struct spi_gpio
Drop unused pdata copy in struct spi_gpio. No functional change
intended.
Signed-off-by: Andrey Smirnov <[email protected]>
Cc: Mark Brown <[email protected]>
Cc: Chris Healy <[email protected]>
Cc: [email protected]
Cc: [email protected]
Signed-off-by: Mark Brown <[email protected]>
Diffstat (limited to 'drivers/spi/spi-gpio.c')
| -rw-r--r-- | drivers/spi/spi-gpio.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/drivers/spi/spi-gpio.c b/drivers/spi/spi-gpio.c index 137f47e271dc..1cff30adc836 100644 --- a/drivers/spi/spi-gpio.c +++ b/drivers/spi/spi-gpio.c @@ -42,7 +42,6 @@ struct spi_gpio { struct spi_bitbang bitbang; - struct spi_gpio_platform_data pdata; struct platform_device *pdev; struct gpio_desc *sck; struct gpio_desc *miso; @@ -415,8 +414,6 @@ static int spi_gpio_probe(struct platform_device *pdev) spi_gpio->has_cs = !!pdata->num_chipselect; spi_gpio->pdev = pdev; - if (pdata) - spi_gpio->pdata = *pdata; status = spi_gpio_request(dev, spi_gpio, pdata->num_chipselect, &master_flags); |
