1 --- a/drivers/net/wireless/b43/main.c
2 +++ b/drivers/net/wireless/b43/main.c
3 @@ -322,83 +322,59 @@ static int b43_ratelimit(struct b43_wl *
5 void b43info(struct b43_wl *wl, const char *fmt, ...)
7 - struct va_format vaf;
10 if (b43_modparam_verbose < B43_VERBOSITY_INFO)
12 if (!b43_ratelimit(wl))
20 - printk(KERN_INFO "b43-%s: %pV",
21 - (wl && wl->hw) ? wiphy_name(wl->hw->wiphy) : "wlan", &vaf);
23 + printk(KERN_INFO "b43-%s: ",
24 + (wl && wl->hw) ? wiphy_name(wl->hw->wiphy) : "wlan");
29 void b43err(struct b43_wl *wl, const char *fmt, ...)
31 - struct va_format vaf;
34 if (b43_modparam_verbose < B43_VERBOSITY_ERROR)
36 if (!b43_ratelimit(wl))
44 - printk(KERN_ERR "b43-%s ERROR: %pV",
45 - (wl && wl->hw) ? wiphy_name(wl->hw->wiphy) : "wlan", &vaf);
47 + printk(KERN_ERR "b43-%s ERROR: ",
48 + (wl && wl->hw) ? wiphy_name(wl->hw->wiphy) : "wlan");
53 void b43warn(struct b43_wl *wl, const char *fmt, ...)
55 - struct va_format vaf;
58 if (b43_modparam_verbose < B43_VERBOSITY_WARN)
60 if (!b43_ratelimit(wl))
68 - printk(KERN_WARNING "b43-%s warning: %pV",
69 - (wl && wl->hw) ? wiphy_name(wl->hw->wiphy) : "wlan", &vaf);
71 + printk(KERN_WARNING "b43-%s warning: ",
72 + (wl && wl->hw) ? wiphy_name(wl->hw->wiphy) : "wlan");
77 void b43dbg(struct b43_wl *wl, const char *fmt, ...)
79 - struct va_format vaf;
82 if (b43_modparam_verbose < B43_VERBOSITY_DEBUG)
90 - printk(KERN_DEBUG "b43-%s debug: %pV",
91 - (wl && wl->hw) ? wiphy_name(wl->hw->wiphy) : "wlan", &vaf);
93 + printk(KERN_DEBUG "b43-%s debug: ",
94 + (wl && wl->hw) ? wiphy_name(wl->hw->wiphy) : "wlan");
99 --- a/drivers/net/wireless/b43legacy/main.c
100 +++ b/drivers/net/wireless/b43legacy/main.c
101 @@ -181,75 +181,52 @@ static int b43legacy_ratelimit(struct b4
103 void b43legacyinfo(struct b43legacy_wl *wl, const char *fmt, ...)
105 - struct va_format vaf;
108 if (!b43legacy_ratelimit(wl))
116 - printk(KERN_INFO "b43legacy-%s: %pV",
117 - (wl && wl->hw) ? wiphy_name(wl->hw->wiphy) : "wlan", &vaf);
119 + printk(KERN_INFO "b43legacy-%s: ",
120 + (wl && wl->hw) ? wiphy_name(wl->hw->wiphy) : "wlan");
121 + vprintk(fmt, args);
125 void b43legacyerr(struct b43legacy_wl *wl, const char *fmt, ...)
127 - struct va_format vaf;
130 if (!b43legacy_ratelimit(wl))
138 - printk(KERN_ERR "b43legacy-%s ERROR: %pV",
139 - (wl && wl->hw) ? wiphy_name(wl->hw->wiphy) : "wlan", &vaf);
141 + printk(KERN_ERR "b43legacy-%s ERROR: ",
142 + (wl && wl->hw) ? wiphy_name(wl->hw->wiphy) : "wlan");
143 + vprintk(fmt, args);
147 void b43legacywarn(struct b43legacy_wl *wl, const char *fmt, ...)
149 - struct va_format vaf;
152 if (!b43legacy_ratelimit(wl))
160 - printk(KERN_WARNING "b43legacy-%s warning: %pV",
161 - (wl && wl->hw) ? wiphy_name(wl->hw->wiphy) : "wlan", &vaf);
163 + printk(KERN_WARNING "b43legacy-%s warning: ",
164 + (wl && wl->hw) ? wiphy_name(wl->hw->wiphy) : "wlan");
165 + vprintk(fmt, args);
170 void b43legacydbg(struct b43legacy_wl *wl, const char *fmt, ...)
172 - struct va_format vaf;
180 - printk(KERN_DEBUG "b43legacy-%s debug: %pV",
181 - (wl && wl->hw) ? wiphy_name(wl->hw->wiphy) : "wlan", &vaf);
183 + printk(KERN_DEBUG "b43legacy-%s debug: ",
184 + (wl && wl->hw) ? wiphy_name(wl->hw->wiphy) : "wlan");
185 + vprintk(fmt, args);
189 --- a/drivers/net/wireless/ath/main.c
190 +++ b/drivers/net/wireless/ath/main.c
191 @@ -60,16 +60,13 @@ EXPORT_SYMBOL(ath_rxbuf_alloc);
192 int ath_printk(const char *level, struct ath_common *common,
193 const char *fmt, ...)
195 - struct va_format vaf;
204 - rtn = printk("%sath: %pV", level, &vaf);
205 + printk("%sath: ", level);
206 + rtn = vprintk(fmt, args);