Commit 5d3f9145 authored by Amadeusz Sławiński's avatar Amadeusz Sławiński Committed by Kalle Valo
Browse files

rtlwifi: rtl8188ee: 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: default avatarAmadeusz Sławiński <amade@asmblr.net>
Signed-off-by: default avatarKalle Valo <kvalo@codeaurora.org>
parent fd156bdf
Loading
Loading
Loading
Loading
+3 −4
Original line number Diff line number Diff line
@@ -9,7 +9,6 @@
#include "phy.h"
#include "dm.h"
#include "hw.h"
#include "sw.h"
#include "trx.h"
#include "led.h"
#include "table.h"
@@ -59,7 +58,7 @@ static void rtl88e_init_aspm_vars(struct ieee80211_hw *hw)
	rtlpci->const_support_pciaspm = rtlpriv->cfg->mod_params->aspm_support;
}

int rtl88e_init_sw_vars(struct ieee80211_hw *hw)
static int rtl88e_init_sw_vars(struct ieee80211_hw *hw)
{
	int err = 0;
	struct rtl_priv *rtlpriv = rtl_priv(hw);
@@ -173,7 +172,7 @@ int rtl88e_init_sw_vars(struct ieee80211_hw *hw)
	return err;
}

void rtl88e_deinit_sw_vars(struct ieee80211_hw *hw)
static void rtl88e_deinit_sw_vars(struct ieee80211_hw *hw)
{
	struct rtl_priv *rtlpriv = rtl_priv(hw);

@@ -189,7 +188,7 @@ void rtl88e_deinit_sw_vars(struct ieee80211_hw *hw)
}

/* get bt coexist status */
bool rtl88e_get_btc_status(void)
static bool rtl88e_get_btc_status(void)
{
	return false;
}
+0 −12
Original line number Diff line number Diff line
/* SPDX-License-Identifier: GPL-2.0 */
/* Copyright(c) 2009-2013  Realtek Corporation.*/

#ifndef __RTL92CE_SW_H__
#define __RTL92CE_SW_H__

int rtl88e_init_sw_vars(struct ieee80211_hw *hw);
void rtl88e_deinit_sw_vars(struct ieee80211_hw *hw);
bool rtl88e_get_btc_status(void);


#endif