Commit aa51bffb authored by Henry Ptasinski's avatar Henry Ptasinski Committed by Greg Kroah-Hartman

staging: brcm80211: add missing KERN_ facility level to printk()

Debug printk() call was missing KERN_DEBUG facility level.
Signed-off-by: default avatarHenry Ptasinski <henryp@broadcom.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent e131d3ce
...@@ -24564,7 +24564,8 @@ static void wlc_phy_calc_rx_iq_comp_nphy(phy_info_t *pi, u8 core_mask) ...@@ -24564,7 +24564,8 @@ static void wlc_phy_calc_rx_iq_comp_nphy(phy_info_t *pi, u8 core_mask)
} }
if (bcmerror != 0) { if (bcmerror != 0) {
printk("%s: Failed, cnt = %d\n", __func__, cal_retry); printk(KERN_DEBUG "%s: Failed, cnt = %d\n", __func__,
cal_retry);
if (cal_retry < CAL_RETRY_CNT) { if (cal_retry < CAL_RETRY_CNT) {
cal_retry++; cal_retry++;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment