media: solo6x10: hide unused variable
When building without CONFIG_GPIOLIB, we get a harmless
warning about an unused variable:
drivers/media/pci/solo6x10/solo6x10-gpio.c: In function 'solo_gpio_init':
drivers/media/pci/solo6x10/solo6x10-gpio.c:165:6: error: unused variable 'ret' [-Werror=unused-variable]
This adds another #ifdef around the declaration.
Fixes: d3202d1981
("media: solo6x10: export hardware GPIO pins 8:31 to gpiolib interface")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Ismael Luceno <ismael@iodev.co.uk>
Acked-by: Anton Sviridenko <anton@corp.bluecherry.net>
Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
This commit is contained in:
parent
06ac35e52b
commit
d259f91c0e
|
@ -162,7 +162,9 @@ static void solo_gpiochip_set(struct gpio_chip *chip,
|
|||
|
||||
int solo_gpio_init(struct solo_dev *solo_dev)
|
||||
{
|
||||
#ifdef CONFIG_GPIOLIB
|
||||
int ret;
|
||||
#endif
|
||||
|
||||
solo_gpio_config(solo_dev);
|
||||
#ifdef CONFIG_GPIOLIB
|
||||
|
|
Loading…
Reference in New Issue