Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 224560
b: refs/heads/master
c: 5b736d4
h: refs/heads/master
v: v3
  • Loading branch information
Joe Perches authored and John W. Linville committed Nov 16, 2010
1 parent 5807d4c commit ce1b0e3
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 13 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 7e559ec31c5625cf85bcb1ae0eb9f8f2a8da4a29
refs/heads/master: 5b736d42bc51fe893fd7d4ceac34c727d23135e1
48 changes: 36 additions & 12 deletions trunk/drivers/net/wireless/b43/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -322,59 +322,83 @@ static int b43_ratelimit(struct b43_wl *wl)

void b43info(struct b43_wl *wl, const char *fmt, ...)
{
struct va_format vaf;
va_list args;

if (b43_modparam_verbose < B43_VERBOSITY_INFO)
return;
if (!b43_ratelimit(wl))
return;

va_start(args, fmt);
printk(KERN_INFO "b43-%s: ",
(wl && wl->hw) ? wiphy_name(wl->hw->wiphy) : "wlan");
vprintk(fmt, args);

vaf.fmt = fmt;
vaf.va = &args;

printk(KERN_INFO "b43-%s: %pV",
(wl && wl->hw) ? wiphy_name(wl->hw->wiphy) : "wlan", &vaf);

va_end(args);
}

void b43err(struct b43_wl *wl, const char *fmt, ...)
{
struct va_format vaf;
va_list args;

if (b43_modparam_verbose < B43_VERBOSITY_ERROR)
return;
if (!b43_ratelimit(wl))
return;

va_start(args, fmt);
printk(KERN_ERR "b43-%s ERROR: ",
(wl && wl->hw) ? wiphy_name(wl->hw->wiphy) : "wlan");
vprintk(fmt, args);

vaf.fmt = fmt;
vaf.va = &args;

printk(KERN_ERR "b43-%s ERROR: %pV",
(wl && wl->hw) ? wiphy_name(wl->hw->wiphy) : "wlan", &vaf);

va_end(args);
}

void b43warn(struct b43_wl *wl, const char *fmt, ...)
{
struct va_format vaf;
va_list args;

if (b43_modparam_verbose < B43_VERBOSITY_WARN)
return;
if (!b43_ratelimit(wl))
return;

va_start(args, fmt);
printk(KERN_WARNING "b43-%s warning: ",
(wl && wl->hw) ? wiphy_name(wl->hw->wiphy) : "wlan");
vprintk(fmt, args);

vaf.fmt = fmt;
vaf.va = &args;

printk(KERN_WARNING "b43-%s warning: %pV",
(wl && wl->hw) ? wiphy_name(wl->hw->wiphy) : "wlan", &vaf);

va_end(args);
}

void b43dbg(struct b43_wl *wl, const char *fmt, ...)
{
struct va_format vaf;
va_list args;

if (b43_modparam_verbose < B43_VERBOSITY_DEBUG)
return;

va_start(args, fmt);
printk(KERN_DEBUG "b43-%s debug: ",
(wl && wl->hw) ? wiphy_name(wl->hw->wiphy) : "wlan");
vprintk(fmt, args);

vaf.fmt = fmt;
vaf.va = &args;

printk(KERN_DEBUG "b43-%s debug: %pV",
(wl && wl->hw) ? wiphy_name(wl->hw->wiphy) : "wlan", &vaf);

va_end(args);
}

Expand Down

0 comments on commit ce1b0e3

Please sign in to comment.