Skip to content

Commit

Permalink
staging: ath6kl: cfg80211: Convert forceFgScan to A_UINT32
Browse files Browse the repository at this point in the history
It's declared that way in the prototype, use it that way too.

Signed-off-by: Joe Perches <joe@perches.com>
Acked-by: Vipin Mehta <vipin.mehta@atheros.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Joe Perches authored and Greg Kroah-Hartman committed Jan 31, 2011
1 parent 6be02be commit e2ad908
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/staging/ath6kl/os/linux/cfg80211.c
Original file line number Diff line number Diff line change
Expand Up @@ -726,7 +726,7 @@ ar6k_cfg80211_scan(struct wiphy *wiphy, struct net_device *ndev,
{
AR_SOFTC_T *ar = (AR_SOFTC_T *)ar6k_priv(ndev);
int ret = 0;
A_BOOL forceFgScan = FALSE;
A_UINT32 forceFgScan = 0;

AR_DEBUG_PRINTF(ATH_DEBUG_INFO, ("%s: \n", __func__));

Expand Down Expand Up @@ -765,7 +765,7 @@ ar6k_cfg80211_scan(struct wiphy *wiphy, struct net_device *ndev,
}

if(ar->arConnected) {
forceFgScan = TRUE;
forceFgScan = 1;
}

if(wmi_startscan_cmd(ar->arWmi, WMI_LONG_SCAN, forceFgScan, FALSE, \
Expand Down

0 comments on commit e2ad908

Please sign in to comment.