]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/commitdiff
mac80211_hwsim: fix bogus warning
authorJohannes Berg <johannes@sipsolutions.net>
Fri, 24 Apr 2009 13:13:54 +0000 (15:13 +0200)
committerJohn W. Linville <linville@tuxdriver.com>
Wed, 6 May 2009 19:14:37 +0000 (15:14 -0400)
A typo slipped into my patch to configure beacon intervals
properly -- this warning is supposed to trigger when the
beacon interval is zero, not non-zero.

Signed-off-by: Johannes Berg <johannes@sipsolutions.net>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
drivers/net/wireless/mac80211_hwsim.c

index e67b424f925e305746510a910523a7301b601ca2..8fa6e6ce5705475a08aee8191fe99fff54cf73ac 100644 (file)
@@ -618,7 +618,7 @@ static void mac80211_hwsim_bss_info_changed(struct ieee80211_hw *hw,
                printk(KERN_DEBUG "  %s: BCNINT: %d\n",
                       wiphy_name(hw->wiphy), info->beacon_int);
                data->beacon_int = 1024 * info->beacon_int / 1000 * HZ / 1000;
-               if (WARN_ON(data->beacon_int))
+               if (WARN_ON(!data->beacon_int))
                        data->beacon_int = 1;
        }