mirror of
https://github.com/lwfinger/rtl8188eu.git
synced 2025-05-08 14:33:05 +00:00
rtl8188eu: Remove typedefs from include/rtw_mp_ioctl.h
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
This commit is contained in:
parent
48f49d413c
commit
dd4a02b2ff
3 changed files with 29 additions and 38 deletions
|
@ -2914,7 +2914,7 @@ static int rtw_drvext_hdl(struct net_device *dev, struct iw_request_info *info,
|
|||
|
||||
static void rtw_dbg_mode_hdl(_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;
|
||||
|
@ -2928,7 +2928,7 @@ static void rtw_dbg_mode_hdl(_adapter *padapter, u32 id, u8 *pdata, u32 len)
|
|||
DBG_88E("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:
|
||||
|
@ -2946,7 +2946,7 @@ static void rtw_dbg_mode_hdl(_adapter *padapter, u32 id, u8 *pdata, u32 len)
|
|||
|
||||
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