rfkill: hide unused goto label
authorArnd Bergmann <arnd@arndb.de>
Fri, 16 Dec 2016 08:44:08 +0000 (09:44 +0100)
committerJohannes Berg <johannes.berg@intel.com>
Fri, 16 Dec 2016 09:05:39 +0000 (10:05 +0100)
A cleanup introduced a harmless warning in some configurations:

net/rfkill/core.c: In function 'rfkill_init':
net/rfkill/core.c:1350:1: warning: label 'error_input' defined but not used [-Wunused-label]

This adds another #ifdef around the label to match that around the
caller.

Fixes: 6124c53edeea ("rfkill: Cleanup error handling in rfkill_init()")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
net/rfkill/core.c

index f6b01f3616e5a07ebc709e4cb4cfc2262db9802f..b7adaee6975661ce9428b5a2bc47275638e8bd0f 100644 (file)
@@ -1347,8 +1347,10 @@ static int __init rfkill_init(void)
 
        return 0;
 
+#ifdef CONFIG_RFKILL_INPUT
 error_input:
        rfkill_any_led_trigger_unregister();
+#endif
 error_led_trigger:
        misc_deregister(&rfkill_miscdev);
 error_misc: