rtl8188eu: Remove typedef statements from include/HalVerDef.h

Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
This commit is contained in:
Larry Finger 2015-03-17 09:57:29 -05:00
parent 8259a22027
commit 22afcbab09
5 changed files with 38 additions and 55 deletions

View file

@ -28,7 +28,7 @@
#define _HAL_INIT_C_
void dump_chip_info(HAL_VERSION ChipVersion)
void dump_chip_info(struct hal_version ChipVersion)
{
int cnt = 0;
u8 buf[128];

View file

@ -2490,13 +2490,11 @@ rtl8188e_Efuse_PgPacketWrite(struct adapter *pAdapter,
return ret;
}
static HAL_VERSION
ReadChipVersion8188E(
struct adapter *padapter
)
static struct hal_version
ReadChipVersion8188E(struct adapter *padapter)
{
u32 value32;
HAL_VERSION ChipVersion;
struct hal_version ChipVersion;
HAL_DATA_TYPE *pHalData;