004-backports-add-led_trigger_blink-_oneshot.patch 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. From 88e75363ff9c00cc2e7768ca23ded79bf8d6bf08 Mon Sep 17 00:00:00 2001
  2. From: Hauke Mehrtens <[email protected]>
  3. Date: Fri, 7 Feb 2014 19:13:11 +0100
  4. Subject: [PATCH 1/8] backports: add led_trigger_blink{_oneshot}()
  5. When led support is deactivated in the kernel and
  6. CPTCFG_BACKPORT_BUILD_LEDS is set mac80211 references
  7. led_trigger_blink_oneshot() but it is not declared anywhere.
  8. This fixes the following build error:
  9. net/mac80211/led.c: In function 'ieee80211_led_rx':
  10. net/mac80211/led.c:25:2: error: implicit declaration of function 'led_trigger_blink_oneshot' [-Werror=implicit-function-declaration]
  11. Signed-off-by: Hauke Mehrtens <[email protected]>
  12. ---
  13. backport-include/backport/leds-disabled.h | 13 +++++++++++++
  14. 1 file changed, 13 insertions(+)
  15. --- a/backport-include/backport/leds-disabled.h
  16. +++ b/backport-include/backport/leds-disabled.h
  17. @@ -176,6 +176,19 @@ static inline void led_trigger_blink_one
  18. int invert)
  19. {
  20. }
  21. +
  22. +static inline void led_trigger_blink(struct led_trigger *trigger,
  23. + unsigned long *delay_on,
  24. + unsigned long *delay_off)
  25. +{
  26. +}
  27. +
  28. +static inline void led_trigger_blink_oneshot(struct led_trigger *trigger,
  29. + unsigned long *delay_on,
  30. + unsigned long *delay_off,
  31. + int invert)
  32. +{
  33. +}
  34. #endif
  35. #endif /* __BACKPORT_LED_DISABLED_SUPPORT */