mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-07 13:43:51 +00:00
rfkill: remove dead code
The following code is defined but never used. Signed-off-by: Stephen Hemminger <shemminger@vyatta.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
parent
e081685c1b
commit
2e48928d8a
@ -354,37 +354,6 @@ static inline bool rfkill_blocked(struct rfkill *rfkill)
|
|||||||
}
|
}
|
||||||
#endif /* RFKILL || RFKILL_MODULE */
|
#endif /* RFKILL || RFKILL_MODULE */
|
||||||
|
|
||||||
|
|
||||||
#ifdef CONFIG_RFKILL_LEDS
|
|
||||||
/**
|
|
||||||
* rfkill_get_led_trigger_name - Get the LED trigger name for the button's LED.
|
|
||||||
* This function might return a NULL pointer if registering of the
|
|
||||||
* LED trigger failed. Use this as "default_trigger" for the LED.
|
|
||||||
*/
|
|
||||||
const char *rfkill_get_led_trigger_name(struct rfkill *rfkill);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* rfkill_set_led_trigger_name -- set the LED trigger name
|
|
||||||
* @rfkill: rfkill struct
|
|
||||||
* @name: LED trigger name
|
|
||||||
*
|
|
||||||
* This function sets the LED trigger name of the radio LED
|
|
||||||
* trigger that rfkill creates. It is optional, but if called
|
|
||||||
* must be called before rfkill_register() to be effective.
|
|
||||||
*/
|
|
||||||
void rfkill_set_led_trigger_name(struct rfkill *rfkill, const char *name);
|
|
||||||
#else
|
|
||||||
static inline const char *rfkill_get_led_trigger_name(struct rfkill *rfkill)
|
|
||||||
{
|
|
||||||
return NULL;
|
|
||||||
}
|
|
||||||
|
|
||||||
static inline void
|
|
||||||
rfkill_set_led_trigger_name(struct rfkill *rfkill, const char *name)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#endif /* __KERNEL__ */
|
#endif /* __KERNEL__ */
|
||||||
|
|
||||||
#endif /* RFKILL_H */
|
#endif /* RFKILL_H */
|
||||||
|
@ -149,20 +149,6 @@ static void rfkill_led_trigger_activate(struct led_classdev *led)
|
|||||||
rfkill_led_trigger_event(rfkill);
|
rfkill_led_trigger_event(rfkill);
|
||||||
}
|
}
|
||||||
|
|
||||||
const char *rfkill_get_led_trigger_name(struct rfkill *rfkill)
|
|
||||||
{
|
|
||||||
return rfkill->led_trigger.name;
|
|
||||||
}
|
|
||||||
EXPORT_SYMBOL(rfkill_get_led_trigger_name);
|
|
||||||
|
|
||||||
void rfkill_set_led_trigger_name(struct rfkill *rfkill, const char *name)
|
|
||||||
{
|
|
||||||
BUG_ON(!rfkill);
|
|
||||||
|
|
||||||
rfkill->ledtrigname = name;
|
|
||||||
}
|
|
||||||
EXPORT_SYMBOL(rfkill_set_led_trigger_name);
|
|
||||||
|
|
||||||
static int rfkill_led_trigger_register(struct rfkill *rfkill)
|
static int rfkill_led_trigger_register(struct rfkill *rfkill)
|
||||||
{
|
{
|
||||||
rfkill->led_trigger.name = rfkill->ledtrigname
|
rfkill->led_trigger.name = rfkill->ledtrigname
|
||||||
|
Loading…
Reference in New Issue
Block a user