diff options
author | AceLan Kao <acelan.kao@canonical.com> | 2012-07-26 09:51:08 +0800 |
---|---|---|
committer | Johannes Berg <johannes.berg@intel.com> | 2012-08-21 20:50:25 +0200 |
commit | 06d7de831dab8b93adb86e039a2f3d36604a9197 (patch) | |
tree | 25d705b75ae55c090a4cafc866e9a6fa3c056d68 /include/linux/rfkill.h | |
parent | dcf33963c48e1959c83fda84e336dbb000eefa3f (diff) | |
download | op-kernel-dev-06d7de831dab8b93adb86e039a2f3d36604a9197.zip op-kernel-dev-06d7de831dab8b93adb86e039a2f3d36604a9197.tar.gz |
Revert "rfkill: remove dead code"
This reverts commit 2e48928d8a0f38c1b5c81eb3f1294de8a6382c68.
Those functions are needed and should not be removed, or
there is no way to set the rfkill led trigger name.
Signed-off-by: AceLan Kao <acelan.kao@canonical.com>
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'include/linux/rfkill.h')
-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 6fdf027..0ec590b 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 */ |