123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209 |
- --- a/drivers/net/wireless/b43/main.c
- +++ b/drivers/net/wireless/b43/main.c
- @@ -322,83 +322,59 @@ static int b43_ratelimit(struct b43_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);
- -
- - vaf.fmt = fmt;
- - vaf.va = &args;
- -
- - printk(KERN_INFO "b43-%s: %pV",
- - (wl && wl->hw) ? wiphy_name(wl->hw->wiphy) : "wlan", &vaf);
- -
- + printk(KERN_INFO "b43-%s: ",
- + (wl && wl->hw) ? wiphy_name(wl->hw->wiphy) : "wlan");
- + vprintk(fmt, args);
- 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);
- -
- - vaf.fmt = fmt;
- - vaf.va = &args;
- -
- - printk(KERN_ERR "b43-%s ERROR: %pV",
- - (wl && wl->hw) ? wiphy_name(wl->hw->wiphy) : "wlan", &vaf);
- -
- + printk(KERN_ERR "b43-%s ERROR: ",
- + (wl && wl->hw) ? wiphy_name(wl->hw->wiphy) : "wlan");
- + vprintk(fmt, args);
- 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);
- -
- - vaf.fmt = fmt;
- - vaf.va = &args;
- -
- - printk(KERN_WARNING "b43-%s warning: %pV",
- - (wl && wl->hw) ? wiphy_name(wl->hw->wiphy) : "wlan", &vaf);
- -
- + printk(KERN_WARNING "b43-%s warning: ",
- + (wl && wl->hw) ? wiphy_name(wl->hw->wiphy) : "wlan");
- + vprintk(fmt, args);
- 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);
- -
- - vaf.fmt = fmt;
- - vaf.va = &args;
- -
- - printk(KERN_DEBUG "b43-%s debug: %pV",
- - (wl && wl->hw) ? wiphy_name(wl->hw->wiphy) : "wlan", &vaf);
- -
- + printk(KERN_DEBUG "b43-%s debug: ",
- + (wl && wl->hw) ? wiphy_name(wl->hw->wiphy) : "wlan");
- + vprintk(fmt, args);
- va_end(args);
- }
-
- --- a/drivers/net/wireless/b43legacy/main.c
- +++ b/drivers/net/wireless/b43legacy/main.c
- @@ -181,75 +181,52 @@ static int b43legacy_ratelimit(struct b4
-
- void b43legacyinfo(struct b43legacy_wl *wl, const char *fmt, ...)
- {
- - struct va_format vaf;
- va_list args;
-
- if (!b43legacy_ratelimit(wl))
- return;
- -
- va_start(args, fmt);
- -
- - vaf.fmt = fmt;
- - vaf.va = &args;
- -
- - printk(KERN_INFO "b43legacy-%s: %pV",
- - (wl && wl->hw) ? wiphy_name(wl->hw->wiphy) : "wlan", &vaf);
- -
- + printk(KERN_INFO "b43legacy-%s: ",
- + (wl && wl->hw) ? wiphy_name(wl->hw->wiphy) : "wlan");
- + vprintk(fmt, args);
- va_end(args);
- }
-
- void b43legacyerr(struct b43legacy_wl *wl, const char *fmt, ...)
- {
- - struct va_format vaf;
- va_list args;
-
- if (!b43legacy_ratelimit(wl))
- return;
- -
- va_start(args, fmt);
- -
- - vaf.fmt = fmt;
- - vaf.va = &args;
- -
- - printk(KERN_ERR "b43legacy-%s ERROR: %pV",
- - (wl && wl->hw) ? wiphy_name(wl->hw->wiphy) : "wlan", &vaf);
- -
- + printk(KERN_ERR "b43legacy-%s ERROR: ",
- + (wl && wl->hw) ? wiphy_name(wl->hw->wiphy) : "wlan");
- + vprintk(fmt, args);
- va_end(args);
- }
-
- void b43legacywarn(struct b43legacy_wl *wl, const char *fmt, ...)
- {
- - struct va_format vaf;
- va_list args;
-
- if (!b43legacy_ratelimit(wl))
- return;
- -
- va_start(args, fmt);
- -
- - vaf.fmt = fmt;
- - vaf.va = &args;
- -
- - printk(KERN_WARNING "b43legacy-%s warning: %pV",
- - (wl && wl->hw) ? wiphy_name(wl->hw->wiphy) : "wlan", &vaf);
- -
- + printk(KERN_WARNING "b43legacy-%s warning: ",
- + (wl && wl->hw) ? wiphy_name(wl->hw->wiphy) : "wlan");
- + vprintk(fmt, args);
- va_end(args);
- }
-
- #if B43legacy_DEBUG
- void b43legacydbg(struct b43legacy_wl *wl, const char *fmt, ...)
- {
- - struct va_format vaf;
- va_list args;
-
- va_start(args, fmt);
- -
- - vaf.fmt = fmt;
- - vaf.va = &args;
- -
- - printk(KERN_DEBUG "b43legacy-%s debug: %pV",
- - (wl && wl->hw) ? wiphy_name(wl->hw->wiphy) : "wlan", &vaf);
- -
- + printk(KERN_DEBUG "b43legacy-%s debug: ",
- + (wl && wl->hw) ? wiphy_name(wl->hw->wiphy) : "wlan");
- + vprintk(fmt, args);
- va_end(args);
- }
- #endif /* DEBUG */
- --- a/drivers/net/wireless/ath/main.c
- +++ b/drivers/net/wireless/ath/main.c
- @@ -60,16 +60,13 @@ EXPORT_SYMBOL(ath_rxbuf_alloc);
- int ath_printk(const char *level, struct ath_common *common,
- const char *fmt, ...)
- {
- - struct va_format vaf;
- va_list args;
- int rtn;
-
- va_start(args, fmt);
-
- - vaf.fmt = fmt;
- - vaf.va = &args;
- -
- - rtn = printk("%sath: %pV", level, &vaf);
- + printk("%sath: ", level);
- + rtn = vprintk(fmt, args);
-
- va_end(args);
-
|