OSDN Git Service

hdpvr: hide unused variable
authorArnd Bergmann <arnd@arndb.de>
Tue, 26 Jan 2016 14:09:56 +0000 (12:09 -0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 25 Feb 2018 10:03:49 +0000 (11:03 +0100)
commita32040f7bbaf3c3800452657f9864ec8abeb10ef
tree1eb2a571d27947d55bd56804c16e0c8b3b730b8e
parent3d2ff1139dfc27e385b129334d41e9acf4d71062
hdpvr: hide unused variable

commit b97baa3e22e18dac42001e665cf27ad1211bf878 upstream.

The i2c client pointer is only used when CONFIG_I2C is set, and
otherwise produces a compile-time warning:

drivers/media/usb/hdpvr/hdpvr-core.c: In function 'hdpvr_probe':
drivers/media/usb/hdpvr/hdpvr-core.c:276:21: error: unused variable 'client' [-Werror=unused-variable]

This uses the same #ifdef to hide the variable when the code using
it is hidden.

Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/media/usb/hdpvr/hdpvr-core.c