1 /* SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause */ 2 /* Copyright(c) 2007 - 2011 Realtek Corporation. */ 3 4 #ifndef __RTL8188E_LED_H__ 5 #define __RTL8188E_LED_H__ 6 7 #include "osdep_service.h" 8 #include "drv_types.h" 9 10 /* */ 11 /* Interface to manipulate LED objects. */ 12 /* */ 13 void rtl8188eu_InitSwLeds(struct adapter *padapter); 14 void rtl8188eu_DeInitSwLeds(struct adapter *padapter); 15 void SwLedOn(struct adapter *padapter, struct LED_871x *pLed); 16 void SwLedOff(struct adapter *padapter, struct LED_871x *pLed); 17 18 #endif 19