rtl8188eu: Remove typedef statements from include/rtw_rf.h and delete unused header files

Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
This commit is contained in:
Larry Finger 2015-03-15 12:43:37 -05:00
parent 851dc8fff5
commit 26b163f24f
12 changed files with 84 additions and 660 deletions

View file

@ -1834,7 +1834,7 @@ _PHY_SetBWMode92C(
* Overview: This function is export to "HalCommon" moudule
*
* Input: struct adapter * Adapter
* HT_CHANNEL_WIDTH Bandwidth 20M or 40M
* enum HT_CHANNEL_WIDTH Bandwidth 20M or 40M
*
* Output: NONE
*
@ -1845,12 +1845,12 @@ _PHY_SetBWMode92C(
void
PHY_SetBWMode8188E(
struct adapter * Adapter,
HT_CHANNEL_WIDTH Bandwidth, /* 20M or 40M */
enum HT_CHANNEL_WIDTH Bandwidth, /* 20M or 40M */
unsigned char Offset /* Upper, Lower, or Don't care */
)
{
HAL_DATA_TYPE *pHalData = GET_HAL_DATA(Adapter);
HT_CHANNEL_WIDTH tmpBW= pHalData->CurrentChannelBW;
enum HT_CHANNEL_WIDTH tmpBW= pHalData->CurrentChannelBW;
pHalData->CurrentChannelBW = Bandwidth;