mirror of
https://github.com/lwfinger/rtl8188eu.git
synced 2024-11-15 01:19:36 +00:00
77d786b6e8
This version takes advantage of all the cleanups to the code. It has been modified to build on older kernels. Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
28 lines
663 B
C
28 lines
663 B
C
/* SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause */
|
|
/* Copyright(c) 2007 - 2011 Realtek Corporation. */
|
|
|
|
#ifndef __RTL8188E_DM_H__
|
|
#define __RTL8188E_DM_H__
|
|
|
|
enum{
|
|
UP_LINK,
|
|
DOWN_LINK,
|
|
};
|
|
|
|
struct dm_priv {
|
|
u32 InitODMFlag;
|
|
|
|
/* Lower Signal threshold for Rate Adaptive */
|
|
int EntryMinUndecoratedSmoothedPWDB;
|
|
int MinUndecoratedPWDBForDM;
|
|
};
|
|
|
|
void rtl8188e_init_dm_priv(struct adapter *adapt);
|
|
void rtl8188e_InitHalDm(struct adapter *adapt);
|
|
void rtl8188e_HalDmWatchDog(struct adapter *adapt);
|
|
|
|
void AntDivCompare8188E(struct adapter *adapt, struct wlan_bssid_ex *dst,
|
|
struct wlan_bssid_ex *src);
|
|
u8 AntDivBeforeLink8188E(struct adapter *adapt);
|
|
|
|
#endif
|