mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-04-23 19:07:42 -04:00
staging: r8188eu: limit rf register writes to path a
The r8188eu driver uses only RF_PATH_A. At the moment, the only exception are private ioctls. It does not make sense if these ioctls set registers that are not used anywhere else in the driver. This patch limits the private ioctl 0x0C, i.e. the rtw_wx_write_rf function, to RF_PATH_A. For any other setting, we return an error saying the parameter is invalid. Signed-off-by: Martin Kaiser <martin@kaiser.cx> Link: https://lore.kernel.org/r/20220205113741.379070-9-martin@kaiser.cx Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
49132583d2
commit
3b011b097c
@@ -2083,6 +2083,9 @@ static int rtw_wx_write_rf(struct net_device *dev,
|
||||
u32 path, addr, data32;
|
||||
|
||||
path = *(u32 *)extra;
|
||||
if (path != RF_PATH_A)
|
||||
return -EINVAL;
|
||||
|
||||
addr = *((u32 *)extra + 1);
|
||||
data32 = *((u32 *)extra + 2);
|
||||
rtl8188e_PHY_SetRFReg(padapter, path, addr, 0xFFFFF, data32);
|
||||
|
||||
Reference in New Issue
Block a user