staging: ks7010: use u32 instead of unsigned int in hostif_bss_scan_confirm
Local variable 'result_code' is declared as unsigned int in hostif_bss_scan_confirm function. Its value is got calling get_dword which returns an 'u32' so change its type to u32 which is preferred Signed-off-by: Sergio Paracuellos <sergio.paracuellos@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
ab0bb2a403
commit
677e281d53
1 changed files with 1 additions and 1 deletions
|
@ -845,7 +845,7 @@ void hostif_associate_indication(struct ks_wlan_private *priv)
|
||||||
static
|
static
|
||||||
void hostif_bss_scan_confirm(struct ks_wlan_private *priv)
|
void hostif_bss_scan_confirm(struct ks_wlan_private *priv)
|
||||||
{
|
{
|
||||||
unsigned int result_code;
|
u32 result_code;
|
||||||
struct net_device *dev = priv->net_dev;
|
struct net_device *dev = priv->net_dev;
|
||||||
union iwreq_data wrqu;
|
union iwreq_data wrqu;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue