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
778 B
C
28 lines
778 B
C
/* SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause */
|
|
/* Copyright(c) 2007 - 2011 Realtek Corporation. */
|
|
|
|
#ifndef __ODM_RTL8188E_H__
|
|
#define __ODM_RTL8188E_H__
|
|
|
|
#define MAIN_ANT 0
|
|
#define AUX_ANT 1
|
|
#define MAIN_ANT_CG_TRX 1
|
|
#define AUX_ANT_CG_TRX 0
|
|
#define MAIN_ANT_CGCS_RX 0
|
|
#define AUX_ANT_CGCS_RX 1
|
|
|
|
void ODM_AntennaDiversityInit_88E(struct odm_dm_struct *pDM_Odm);
|
|
|
|
void ODM_AntennaDiversity_88E(struct odm_dm_struct *pDM_Odm);
|
|
|
|
void ODM_SetTxAntByTxInfo_88E(struct odm_dm_struct *pDM_Odm, u8 *pDesc,
|
|
u8 macId);
|
|
|
|
void ODM_UpdateRxIdleAnt_88E(struct odm_dm_struct *pDM_Odm, u8 Ant);
|
|
|
|
void ODM_AntselStatistics_88E(struct odm_dm_struct *pDM_Odm, u8 antsel_tr_mux,
|
|
u32 MacId, u8 RxPWDBAll);
|
|
|
|
void odm_FastAntTraining(struct odm_dm_struct *pDM_Odm);
|
|
|
|
#endif
|