mirror of
https://github.com/torvalds/linux.git
synced 2024-12-13 22:53:20 +00:00
staging: ks7010: replace cast type in assignment in hostif_sme_set_pmksa
There is an assignment inside hostif_sme_set_pmksa function which is being used together with cpu_to_le16 using uint16_t as cast type. Replace it to use 'u16' instead. Signed-off-by: Sergio Paracuellos <sergio.paracuellos@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
88c8016232
commit
b736906657
@ -1979,7 +1979,7 @@ void hostif_sme_set_pmksa(struct ks_wlan_private *priv)
|
||||
memcpy(pmkcache.list[i].pmkid, pmk->pmkid, IW_PMKID_LEN);
|
||||
i++;
|
||||
}
|
||||
pmkcache.size = cpu_to_le16((uint16_t)(priv->pmklist.size));
|
||||
pmkcache.size = cpu_to_le16((u16)(priv->pmklist.size));
|
||||
size = sizeof(priv->pmklist.size) +
|
||||
((ETH_ALEN + IW_PMKID_LEN) * priv->pmklist.size);
|
||||
hostif_mib_set_request_ostring(priv, LOCAL_PMK, &pmkcache, size);
|
||||
|
Loading…
Reference in New Issue
Block a user