diff options
author | John W. Linville <linville@tuxdriver.com> | 2012-08-23 09:49:42 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2012-08-23 09:49:42 -0400 |
commit | a4881cc45a3fab4488e16c4934e149cfa620f1a9 (patch) | |
tree | 653eaec2c015a52ba17b4e1b714251b9472925ec /include | |
parent | 6de3f7e911d27d6737c79b3f6b5069044ea408ec (diff) | |
parent | aba4e6fff8de0c92e53f0e7ef077231e75f7d760 (diff) | |
download | linux-a4881cc45a3fab4488e16c4934e149cfa620f1a9.tar.bz2 |
Merge branch 'for-john' of git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/rfkill.h | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/include/linux/rfkill.h b/include/linux/rfkill.h index 6fdf02737e9d..0ec590bb3611 100644 --- a/include/linux/rfkill.h +++ b/include/linux/rfkill.h @@ -354,6 +354,37 @@ static inline bool rfkill_blocked(struct rfkill *rfkill) } #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 /* RFKILL_H */ |