mirror of
https://github.com/lwfinger/rtl8188eu.git
synced 2024-11-10 07:29:40 +00:00
rtl8188eu: Fix a missing cpu_to_le16
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
This commit is contained in:
parent
24cbb514c5
commit
f0f2a06c6d
1 changed files with 1 additions and 1 deletions
|
@ -3769,7 +3769,7 @@ static void issue_p2p_GO_confirm(struct adapter *padapter, u8* raddr, u8 result)
|
|||
// Type:
|
||||
p2pie[ p2pielen++ ] = P2P_ATTR_CH_LIST;
|
||||
|
||||
*(u16*) ( p2pie + p2pielen ) = 6;
|
||||
*(__le16 *) ( p2pie + p2pielen ) = cpu_to_le16(6);
|
||||
p2pielen += 2;
|
||||
|
||||
// Country String
|
||||
|
|
Loading…
Reference in a new issue