mirror of
https://github.com/lwfinger/rtl8188eu.git
synced 2025-05-08 14:33:05 +00:00
rtl8188eu: Remove typedef statements from include/rtw_mp_ioctl.h
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
This commit is contained in:
parent
4547604302
commit
8259a22027
2 changed files with 5 additions and 54 deletions
|
@ -2909,7 +2909,7 @@ _rtw_drvext_hdl_exit:
|
|||
|
||||
static void rtw_dbg_mode_hdl(struct adapter *padapter, u32 id, u8 *pdata, u32 len)
|
||||
{
|
||||
pRW_Reg RegRWStruct;
|
||||
struct mp_rw_reg * RegRWStruct;
|
||||
struct rf_reg_param *prfreg;
|
||||
u8 path;
|
||||
u8 offset;
|
||||
|
@ -2923,7 +2923,7 @@ static void rtw_dbg_mode_hdl(struct adapter *padapter, u32 id, u8 *pdata, u32 le
|
|||
DBG_871X("871x_driver is only for normal mode, can't enter mp mode\n");
|
||||
break;
|
||||
case GEN_MP_IOCTL_SUBCODE(READ_REG):
|
||||
RegRWStruct = (pRW_Reg)pdata;
|
||||
RegRWStruct = (struct mp_rw_reg *)pdata;
|
||||
switch (RegRWStruct->width)
|
||||
{
|
||||
case 1:
|
||||
|
@ -2941,7 +2941,7 @@ static void rtw_dbg_mode_hdl(struct adapter *padapter, u32 id, u8 *pdata, u32 le
|
|||
|
||||
break;
|
||||
case GEN_MP_IOCTL_SUBCODE(WRITE_REG):
|
||||
RegRWStruct = (pRW_Reg)pdata;
|
||||
RegRWStruct = (struct mp_rw_reg *)pdata;
|
||||
switch (RegRWStruct->width)
|
||||
{
|
||||
case 1:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue