forked from Minki/linux
1472d3a875
As noted by Stephan Rothwell, an allyesconfig build fails since rtl8192cu was merged with failures such as: drivers/net/wireless/rtlwifi/rtl8192cu/built-in.o: In function `rtl92c_phy_sw_chnl': (.opd+0xf30): multiple definition of `rtl92c_phy_sw_chnl' drivers/net/wireless/rtlwifi/rtl8192ce/built-in.o:(.opd+0xb70): first defined here drivers/net/wireless/rtlwifi/rtl8192cu/built-in.o: In function `rtl92c_fill_h2c_cmd': (.opd+0x288): multiple definition of `rtl92c_fill_h2c_cmd' drivers/net/wireless/rtlwifi/rtl8192ce/built-in.o:(.opd+0x288): first defined here These are caused because the code shared between rtl8192ce and rtl8192cu is included in both drivers. This has been fixed by creating a new modue that contains the shared code. Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net> Signed-off-by: John W. Linville <linville@tuxdriver.com>
52 lines
2.0 KiB
C
52 lines
2.0 KiB
C
/******************************************************************************
|
|
*
|
|
* Copyright(c) 2009-2010 Realtek Corporation.
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
* under the terms of version 2 of the GNU General Public License as
|
|
* published by the Free Software Foundation.
|
|
*
|
|
* This program is distributed in the hope that it will be useful, but WITHOUT
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
* more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License along with
|
|
* this program; if not, write to the Free Software Foundation, Inc.,
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
|
|
*
|
|
* The full GNU General Public License is included in this distribution in the
|
|
* file called LICENSE.
|
|
*
|
|
* Contact Information:
|
|
* wlanfae <wlanfae@realtek.com>
|
|
* Realtek Corporation, No. 2, Innovation Road II, Hsinchu Science Park,
|
|
* Hsinchu 300, Taiwan.
|
|
*
|
|
* Larry Finger <Larry.Finger@lwfinger.net>
|
|
*
|
|
*****************************************************************************/
|
|
|
|
#ifndef __RTL92CE_SW_H__
|
|
#define __RTL92CE_SW_H__
|
|
|
|
int rtl92c_init_sw_vars(struct ieee80211_hw *hw);
|
|
void rtl92c_deinit_sw_vars(struct ieee80211_hw *hw);
|
|
void rtl92c_init_var_map(struct ieee80211_hw *hw);
|
|
bool _rtl92c_cmd_send_packet(struct ieee80211_hw *hw,
|
|
struct sk_buff *skb);
|
|
void rtl92ce_phy_rf6052_set_cck_txpower(struct ieee80211_hw *hw,
|
|
u8 *ppowerlevel);
|
|
void rtl92ce_phy_rf6052_set_ofdm_txpower(struct ieee80211_hw *hw,
|
|
u8 *ppowerlevel, u8 channel);
|
|
bool _rtl92ce_phy_config_bb_with_headerfile(struct ieee80211_hw *hw,
|
|
u8 configtype);
|
|
bool _rtl92ce_phy_config_bb_with_pgheaderfile(struct ieee80211_hw *hw,
|
|
u8 configtype);
|
|
void _rtl92ce_phy_lc_calibrate(struct ieee80211_hw *hw, bool is2t);
|
|
u32 rtl92ce_phy_query_rf_reg(struct ieee80211_hw *hw,
|
|
enum radio_path rfpath, u32 regaddr, u32 bitmask);
|
|
void rtl92ce_phy_set_bw_mode_callback(struct ieee80211_hw *hw);
|
|
|
|
#endif
|