staging: ks7010: use u16 as cast type in hostif_start_request
Use u16 as cast type in hostif_start_request function replacing uint16_t which was being used. Signed-off-by: Sergio Paracuellos <sergio.paracuellos@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
f7761114be
commit
5503fd5afd
@ -1253,7 +1253,7 @@ void hostif_start_request(struct ks_wlan_private *priv, unsigned char mode)
|
||||
if (!pp)
|
||||
return;
|
||||
|
||||
pp->mode = cpu_to_le16((uint16_t)mode);
|
||||
pp->mode = cpu_to_le16((u16)mode);
|
||||
|
||||
send_request_to_device(priv, pp, hif_align_size(sizeof(*pp)));
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user