diff options
author | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2012-09-07 08:23:06 +0800 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2012-09-07 08:23:06 +0800 |
commit | ac2cb30b4792340d932545f41a8335da2632027d (patch) | |
tree | 0db17bdbe737f24b611f0ad8607b377064a1ff1d | |
parent | 78bfee0e1e2e22c3062b41be8db618e7484c8e35 (diff) | |
download | op-kernel-dev-ac2cb30b4792340d932545f41a8335da2632027d.zip op-kernel-dev-ac2cb30b4792340d932545f41a8335da2632027d.tar.gz |
spi/gpio: Fix stub for spi_gpio_probe_dt()
The gpio_ was missing from the name. Add a name for the parameter while
we're at it since GCC warns.
Reported-by: Stephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
-rw-r--r-- | drivers/spi/spi-gpio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/spi/spi-gpio.c b/drivers/spi/spi-gpio.c index aed1615..a2b50c5 100644 --- a/drivers/spi/spi-gpio.c +++ b/drivers/spi/spi-gpio.c @@ -386,7 +386,7 @@ error_free: return ret; } #else -static inline int spi_probe_dt(struct platform_device *) +static inline int spi_gpio_probe_dt(struct platform_device *pdev) { return 0; } |