Commit 45f7718a authored by Andrey Smirnov's avatar Andrey Smirnov Committed by Mark Brown

spi: gpio: Drop unused pdev field in struct spi_gpio

There's no code using 'pdev' field in struct spi_gpio. Drop it.
Signed-off-by: default avatarAndrey Smirnov <andrew.smirnov@gmail.com>
Cc: Mark Brown <broonie@kernel.org>
Cc: Chris Healy <cphealy@gmail.com>
Cc: linux-spi@vger.kernel.org
Cc: linux-kernel@vger.kernel.org
Signed-off-by: default avatarMark Brown <broonie@kernel.org>
parent 5c8283c1
......@@ -41,7 +41,6 @@
struct spi_gpio {
struct spi_bitbang bitbang;
struct platform_device *pdev;
struct gpio_desc *sck;
struct gpio_desc *miso;
struct gpio_desc *mosi;
......@@ -390,8 +389,6 @@ static int spi_gpio_probe(struct platform_device *pdev)
platform_set_drvdata(pdev, spi_gpio);
spi_gpio->pdev = pdev;
status = spi_gpio_request(dev, spi_gpio);
if (status)
return status;
......
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