rtlwifi: rtl8723be: Make functions static & rm sw.h
Some of functions which were exposed in sw.h, are only used in sw.c, so just make them static. This makes sw.h unnecessary, so remove it. Signed-off-by: Amadeusz Sławiński <amade@asmblr.net> Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
This commit is contained in:
parent
c218acfaa6
commit
02a214e29e
|
@ -13,7 +13,6 @@
|
|||
#include "hw.h"
|
||||
#include "fw.h"
|
||||
#include "../rtl8723com/fw_common.h"
|
||||
#include "sw.h"
|
||||
#include "trx.h"
|
||||
#include "led.h"
|
||||
#include "table.h"
|
||||
|
@ -64,7 +63,7 @@ static void rtl8723be_init_aspm_vars(struct ieee80211_hw *hw)
|
|||
rtlpci->const_support_pciaspm = rtlpriv->cfg->mod_params->aspm_support;
|
||||
}
|
||||
|
||||
int rtl8723be_init_sw_vars(struct ieee80211_hw *hw)
|
||||
static int rtl8723be_init_sw_vars(struct ieee80211_hw *hw)
|
||||
{
|
||||
int err = 0;
|
||||
struct rtl_priv *rtlpriv = rtl_priv(hw);
|
||||
|
@ -170,7 +169,7 @@ int rtl8723be_init_sw_vars(struct ieee80211_hw *hw)
|
|||
return 0;
|
||||
}
|
||||
|
||||
void rtl8723be_deinit_sw_vars(struct ieee80211_hw *hw)
|
||||
static void rtl8723be_deinit_sw_vars(struct ieee80211_hw *hw)
|
||||
{
|
||||
struct rtl_priv *rtlpriv = rtl_priv(hw);
|
||||
|
||||
|
@ -181,7 +180,7 @@ void rtl8723be_deinit_sw_vars(struct ieee80211_hw *hw)
|
|||
}
|
||||
|
||||
/* get bt coexist status */
|
||||
bool rtl8723be_get_btc_status(void)
|
||||
static bool rtl8723be_get_btc_status(void)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
|
|
@ -1,13 +0,0 @@
|
|||
/* SPDX-License-Identifier: GPL-2.0 */
|
||||
/* Copyright(c) 2009-2014 Realtek Corporation.*/
|
||||
|
||||
#ifndef __RTL8723BE_SW_H__
|
||||
#define __RTL8723BE_SW_H__
|
||||
|
||||
int rtl8723be_init_sw_vars(struct ieee80211_hw *hw);
|
||||
void rtl8723be_deinit_sw_vars(struct ieee80211_hw *hw);
|
||||
void rtl8723be_init_var_map(struct ieee80211_hw *hw);
|
||||
bool rtl8723be_get_btc_status(void);
|
||||
|
||||
|
||||
#endif
|
Loading…
Reference in New Issue