Skip to content

Commit

Permalink
staging: brcm80211: add missing KERN_ facility level to printk()
Browse files Browse the repository at this point in the history
Debug printk() call was missing KERN_DEBUG facility level.

Signed-off-by: Henry Ptasinski <henryp@broadcom.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Henry Ptasinski authored and Greg Kroah-Hartman committed Jul 5, 2011
1 parent e131d3c commit aa51bff
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion drivers/staging/brcm80211/brcmsmac/phy/phy_n.c
Original file line number Diff line number Diff line change
Expand Up @@ -24564,7 +24564,8 @@ static void wlc_phy_calc_rx_iq_comp_nphy(phy_info_t *pi, u8 core_mask)
}

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) {
cal_retry++;
Expand Down

0 comments on commit aa51bff

Please sign in to comment.