mirror of
https://github.com/torvalds/linux.git
synced 2024-12-13 22:53:20 +00:00
staging: ks7010: replace casts to use type u16 in init_request
There are soem assignments inside init_request function which are being used together with cpu_to_le16 using uint16_t as cast type. Replace all of them 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
5503fd5afd
commit
22bef06649
@ -1281,9 +1281,9 @@ static __le16 ks_wlan_cap(struct ks_wlan_private *priv)
|
||||
static void init_request(struct ks_wlan_private *priv,
|
||||
struct hostif_request *req)
|
||||
{
|
||||
req->phy_type = cpu_to_le16((uint16_t)(priv->reg.phy_type));
|
||||
req->cts_mode = cpu_to_le16((uint16_t)(priv->reg.cts_mode));
|
||||
req->scan_type = cpu_to_le16((uint16_t)(priv->reg.scan_type));
|
||||
req->phy_type = cpu_to_le16((u16)(priv->reg.phy_type));
|
||||
req->cts_mode = cpu_to_le16((u16)(priv->reg.cts_mode));
|
||||
req->scan_type = cpu_to_le16((u16)(priv->reg.scan_type));
|
||||
req->rate_set.size = priv->reg.rate_set.size;
|
||||
req->capability = ks_wlan_cap(priv);
|
||||
memcpy(&req->rate_set.body[0], &priv->reg.rate_set.body[0],
|
||||
|
Loading…
Reference in New Issue
Block a user