led.h 404 B

12345678910111213141516171819202122232425
  1. /* SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause */
  2. /* Copyright(c) 2025 Realtek Corporation
  3. */
  4. #ifndef __RTW_LED_H
  5. #define __RTW_LED_H
  6. #ifdef CONFIG_RTW88_LEDS
  7. void rtw_led_init(struct rtw_dev *rtwdev);
  8. void rtw_led_deinit(struct rtw_dev *rtwdev);
  9. #else
  10. static inline void rtw_led_init(struct rtw_dev *rtwdev)
  11. {
  12. }
  13. static inline void rtw_led_deinit(struct rtw_dev *rtwdev)
  14. {
  15. }
  16. #endif
  17. #endif