mirror of
https://github.com/torvalds/linux.git
synced 2024-11-05 19:41:54 +00:00
staging:rtl8712: Fix sparse warning incorrect type in assignment
This patch fixes the following sparse warnings: drivers/staging/rtl8712/rtl871x_cmd.c:471:30: warning: incorrect type in assignment (different base types) drivers/staging/rtl8712/rtl871x_cmd.c:471:30: expected unsigned int [unsigned] [usertype] Length drivers/staging/rtl8712/rtl871x_cmd.c:471:30: got restricted __le32 [usertype] <noident> drivers/staging/rtl8712/rtl871x_cmd.c:472:32: warning: incorrect type in assignment (different base types) drivers/staging/rtl8712/rtl871x_cmd.c:472:32: expected unsigned int [unsigned] [usertype] IELength drivers/staging/rtl8712/rtl871x_cmd.c:472:32: got restricted __le32 [usertype] <noident> drivers/staging/rtl8712/rtl871x_cmd.c:473:39: warning: incorrect type in assignment (different base types) drivers/staging/rtl8712/rtl871x_cmd.c:473:39: expected unsigned int [unsigned] [usertype] SsidLength drivers/staging/rtl8712/rtl871x_cmd.c:473:39: got restricted __le32 [usertype] <noident> Signed-off-by: Himangi Saraogi <himangi774@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
f234e187c3
commit
0f11b53dbc
@ -468,10 +468,9 @@ u8 r8712_createbss_cmd(struct _adapter *padapter)
|
||||
pcmd->rsp = NULL;
|
||||
pcmd->rspsz = 0;
|
||||
/* notes: translate IELength & Length after assign to cmdsz; */
|
||||
pdev_network->Length = cpu_to_le32(pcmd->cmdsz);
|
||||
pdev_network->IELength = cpu_to_le32(pdev_network->IELength);
|
||||
pdev_network->Ssid.SsidLength = cpu_to_le32(
|
||||
pdev_network->Ssid.SsidLength);
|
||||
pdev_network->Length = pcmd->cmdsz;
|
||||
pdev_network->IELength = pdev_network->IELength;
|
||||
pdev_network->Ssid.SsidLength = pdev_network->Ssid.SsidLength;
|
||||
r8712_enqueue_cmd(pcmdpriv, pcmd);
|
||||
return _SUCCESS;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user