xref: /linux/drivers/net/wireless/realtek/rtlwifi/rtl8192cu/led.h (revision f1d2b4d338bf090296f67830025228872fd52513)
1*f1d2b4d3SLarry Finger /******************************************************************************
2*f1d2b4d3SLarry Finger  *
3*f1d2b4d3SLarry Finger  * Copyright(c) 2009-2012  Realtek Corporation. All rights reserved.
4*f1d2b4d3SLarry Finger  *
5*f1d2b4d3SLarry Finger  * This program is free software; you can redistribute it and/or modify it
6*f1d2b4d3SLarry Finger  * under the terms of version 2 of the GNU General Public License as
7*f1d2b4d3SLarry Finger  * published by the Free Software Foundation.
8*f1d2b4d3SLarry Finger  *
9*f1d2b4d3SLarry Finger  * This program is distributed in the hope that it will be useful, but WITHOUT
10*f1d2b4d3SLarry Finger  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11*f1d2b4d3SLarry Finger  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
12*f1d2b4d3SLarry Finger  * more details.
13*f1d2b4d3SLarry Finger  *
14*f1d2b4d3SLarry Finger  * You should have received a copy of the GNU General Public License along with
15*f1d2b4d3SLarry Finger  * this program; if not, write to the Free Software Foundation, Inc.,
16*f1d2b4d3SLarry Finger  * 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
17*f1d2b4d3SLarry Finger  *
18*f1d2b4d3SLarry Finger  * The full GNU General Public License is included in this distribution in the
19*f1d2b4d3SLarry Finger  * file called LICENSE.
20*f1d2b4d3SLarry Finger  *
21*f1d2b4d3SLarry Finger  * Contact Information:
22*f1d2b4d3SLarry Finger  * wlanfae <wlanfae@realtek.com>
23*f1d2b4d3SLarry Finger  * Realtek Corporation, No. 2, Innovation Road II, Hsinchu Science Park,
24*f1d2b4d3SLarry Finger  * Hsinchu 300, Taiwan.
25*f1d2b4d3SLarry Finger  *
26*f1d2b4d3SLarry Finger  *****************************************************************************/
27*f1d2b4d3SLarry Finger 
28*f1d2b4d3SLarry Finger #ifndef __RTL92CU_LED_H__
29*f1d2b4d3SLarry Finger #define __RTL92CU_LED_H__
30*f1d2b4d3SLarry Finger 
31*f1d2b4d3SLarry Finger void rtl92cu_init_sw_leds(struct ieee80211_hw *hw);
32*f1d2b4d3SLarry Finger void rtl92cu_deinit_sw_leds(struct ieee80211_hw *hw);
33*f1d2b4d3SLarry Finger void rtl92cu_sw_led_on(struct ieee80211_hw *hw, struct rtl_led *pled);
34*f1d2b4d3SLarry Finger void rtl92cu_sw_led_off(struct ieee80211_hw *hw, struct rtl_led *pled);
35*f1d2b4d3SLarry Finger void rtl92cu_led_control(struct ieee80211_hw *hw, enum led_ctl_mode ledaction);
36*f1d2b4d3SLarry Finger 
37*f1d2b4d3SLarry Finger #endif
38