Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

mac80211: fix slot time debug message

wlan0: switched to short barker preamble (BSSID=00:01:aa:bb:cc:dd)
wlan0: switched to short slot (BSSID=) <something is missing here>

should be:

wlan0: switched to short barker preamble (BSSID=00:01:aa:bb:cc:dd)
wlan0: switched to short slot (BSSID=00:01:aa:bb:cc:dd)

Signed-off-by: Christian Lamparter <chunkeey@web.de>
Signed-off-by: John W. Linville <linville@tuxdriver.com>

authored by

Christian Lamparter and committed by
John W. Linville
391429c1 7fe99c4e

+2 -2
+2 -2
net/mac80211/mlme.c
··· 620 620 if (use_short_slot != bss_conf->use_short_slot) { 621 621 #ifdef CONFIG_MAC80211_VERBOSE_DEBUG 622 622 if (net_ratelimit()) { 623 - printk(KERN_DEBUG "%s: switched to %s slot" 624 - " (BSSID=%s)\n", 623 + printk(KERN_DEBUG "%s: switched to %s slot time" 624 + " (BSSID=%pM)\n", 625 625 sdata->dev->name, 626 626 use_short_slot ? "short" : "long", 627 627 ifsta->bssid);