staging: r8188eu: change the type of a variable in rtw_write16()

Change the type of "data" from __le32 to __le16 in rtw_write16(). The
argument "val", which is u16, after being conditionally swapped to little
endian, is assigned to "data"; therefore, __le16 is the most suitable type
for "data". Remove the bitwise AND of "val" with 0xffff because it is
redundant. Use cpu_to_le16() because "data" is __le16.

Co-developed-by: Pavel Skripkin <paskripkin@gmail.com>
Signed-off-by: Pavel Skripkin <paskripkin@gmail.com>
Signed-off-by: Fabio M. De Francesco <fmdefrancesco@gmail.com>
Link: https://lore.kernel.org/r/20210924122705.3781-9-fmdefrancesco@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Fabio M. De Francesco 2021-09-24 14:26:57 +02:00 коммит произвёл Greg Kroah-Hartman
Родитель 7dc3f33ccb
Коммит a3c1900154
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -145,7 +145,7 @@ int rtw_write16(struct adapter *adapter, u32 addr, u16 val)
struct io_priv *io_priv = &adapter->iopriv; struct io_priv *io_priv = &adapter->iopriv;
struct intf_hdl *intf = &io_priv->intf; struct intf_hdl *intf = &io_priv->intf;
u16 value = addr & 0xffff; u16 value = addr & 0xffff;
__le32 data = cpu_to_le32(val & 0x0000ffff); __le16 data = cpu_to_le16(val);
int ret; int ret;
ret = usbctrl_vendorreq(intf, value, &data, 2, REALTEK_USB_VENQT_WRITE); ret = usbctrl_vendorreq(intf, value, &data, 2, REALTEK_USB_VENQT_WRITE);