mirror of
https://github.com/lwfinger/rtl8188eu.git
synced 2025-05-08 14:33:05 +00:00
rtl8188eu: Fix sparse issues in core/rtw_mp.c
For the most part, these are endian related. Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
This commit is contained in:
parent
8a098e4f68
commit
80c723e738
4 changed files with 45 additions and 97 deletions
|
@ -392,7 +392,7 @@ static VOID PHY_SetRFPathSwitch_default(
|
|||
}
|
||||
|
||||
|
||||
void mpt_InitHWConfig(PADAPTER Adapter)
|
||||
static void mpt_InitHWConfig(PADAPTER Adapter)
|
||||
{
|
||||
if (IS_HARDWARE_TYPE_8723B(Adapter)) {
|
||||
/* TODO: <20130114, Kordan> The following setting is only for DPDT and Fixed board type. */
|
||||
|
@ -1247,7 +1247,7 @@ int SetTxPower(PADAPTER pAdapter)
|
|||
return _TRUE;
|
||||
}
|
||||
|
||||
void SetTxAGCOffset(PADAPTER pAdapter, u32 ulTxAGCOffset)
|
||||
static void SetTxAGCOffset(PADAPTER pAdapter, u32 ulTxAGCOffset)
|
||||
{
|
||||
u32 TxAGCOffset_B, TxAGCOffset_C, TxAGCOffset_D, tmpAGC;
|
||||
|
||||
|
@ -1427,7 +1427,7 @@ void fill_txdesc_for_mp(PADAPTER padapter, u8 *ptxdesc)
|
|||
}
|
||||
|
||||
#if defined(CONFIG_RTL8188E)
|
||||
void fill_tx_desc_8188e(PADAPTER padapter)
|
||||
static void fill_tx_desc_8188e(PADAPTER padapter)
|
||||
{
|
||||
struct mp_priv *pmp_priv = &padapter->mppriv;
|
||||
struct tx_desc *desc = (struct tx_desc *)&(pmp_priv->tx.desc);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue