1 --- a/drivers/net/wireless/ath/debug.c
2 +++ b/drivers/net/wireless/ath/debug.c
5 void ath_print(struct ath_common *common, int dbg_mask, const char *fmt, ...)
7 - struct va_format vaf;
10 if (likely(!(common->debug_mask & dbg_mask)))
18 - printk(KERN_DEBUG "ath: %pV", &vaf);
20 + printk(KERN_DEBUG "ath: ");
24 EXPORT_SYMBOL(ath_print);
25 --- a/drivers/net/wireless/b43/main.c
26 +++ b/drivers/net/wireless/b43/main.c
27 @@ -322,83 +322,59 @@ static int b43_ratelimit(struct b43_wl *
29 void b43info(struct b43_wl *wl, const char *fmt, ...)
31 - struct va_format vaf;
34 if (b43_modparam_verbose < B43_VERBOSITY_INFO)
36 if (!b43_ratelimit(wl))
44 - printk(KERN_INFO "b43-%s: %pV",
45 - (wl && wl->hw) ? wiphy_name(wl->hw->wiphy) : "wlan", &vaf);
47 + printk(KERN_INFO "b43-%s: ",
48 + (wl && wl->hw) ? wiphy_name(wl->hw->wiphy) : "wlan");
53 void b43err(struct b43_wl *wl, const char *fmt, ...)
55 - struct va_format vaf;
58 if (b43_modparam_verbose < B43_VERBOSITY_ERROR)
60 if (!b43_ratelimit(wl))
68 - printk(KERN_ERR "b43-%s ERROR: %pV",
69 - (wl && wl->hw) ? wiphy_name(wl->hw->wiphy) : "wlan", &vaf);
71 + printk(KERN_ERR "b43-%s ERROR: ",
72 + (wl && wl->hw) ? wiphy_name(wl->hw->wiphy) : "wlan");
77 void b43warn(struct b43_wl *wl, const char *fmt, ...)
79 - struct va_format vaf;
82 if (b43_modparam_verbose < B43_VERBOSITY_WARN)
84 if (!b43_ratelimit(wl))
92 - printk(KERN_WARNING "b43-%s warning: %pV",
93 - (wl && wl->hw) ? wiphy_name(wl->hw->wiphy) : "wlan", &vaf);
95 + printk(KERN_WARNING "b43-%s warning: ",
96 + (wl && wl->hw) ? wiphy_name(wl->hw->wiphy) : "wlan");
101 void b43dbg(struct b43_wl *wl, const char *fmt, ...)
103 - struct va_format vaf;
106 if (b43_modparam_verbose < B43_VERBOSITY_DEBUG)
114 - printk(KERN_DEBUG "b43-%s debug: %pV",
115 - (wl && wl->hw) ? wiphy_name(wl->hw->wiphy) : "wlan", &vaf);
117 + printk(KERN_DEBUG "b43-%s debug: ",
118 + (wl && wl->hw) ? wiphy_name(wl->hw->wiphy) : "wlan");
119 + vprintk(fmt, args);
123 --- a/drivers/net/wireless/b43legacy/main.c
124 +++ b/drivers/net/wireless/b43legacy/main.c
125 @@ -181,75 +181,52 @@ static int b43legacy_ratelimit(struct b4
127 void b43legacyinfo(struct b43legacy_wl *wl, const char *fmt, ...)
129 - struct va_format vaf;
132 if (!b43legacy_ratelimit(wl))
140 - printk(KERN_INFO "b43legacy-%s: %pV",
141 - (wl && wl->hw) ? wiphy_name(wl->hw->wiphy) : "wlan", &vaf);
143 + printk(KERN_INFO "b43legacy-%s: ",
144 + (wl && wl->hw) ? wiphy_name(wl->hw->wiphy) : "wlan");
145 + vprintk(fmt, args);
149 void b43legacyerr(struct b43legacy_wl *wl, const char *fmt, ...)
151 - struct va_format vaf;
154 if (!b43legacy_ratelimit(wl))
162 - printk(KERN_ERR "b43legacy-%s ERROR: %pV",
163 - (wl && wl->hw) ? wiphy_name(wl->hw->wiphy) : "wlan", &vaf);
165 + printk(KERN_ERR "b43legacy-%s ERROR: ",
166 + (wl && wl->hw) ? wiphy_name(wl->hw->wiphy) : "wlan");
167 + vprintk(fmt, args);
171 void b43legacywarn(struct b43legacy_wl *wl, const char *fmt, ...)
173 - struct va_format vaf;
176 if (!b43legacy_ratelimit(wl))
184 - printk(KERN_WARNING "b43legacy-%s warning: %pV",
185 - (wl && wl->hw) ? wiphy_name(wl->hw->wiphy) : "wlan", &vaf);
187 + printk(KERN_WARNING "b43legacy-%s warning: ",
188 + (wl && wl->hw) ? wiphy_name(wl->hw->wiphy) : "wlan");
189 + vprintk(fmt, args);
194 void b43legacydbg(struct b43legacy_wl *wl, const char *fmt, ...)
196 - struct va_format vaf;
204 - printk(KERN_DEBUG "b43legacy-%s debug: %pV",
205 - (wl && wl->hw) ? wiphy_name(wl->hw->wiphy) : "wlan", &vaf);
207 + printk(KERN_DEBUG "b43legacy-%s debug: ",
208 + (wl && wl->hw) ? wiphy_name(wl->hw->wiphy) : "wlan");
209 + vprintk(fmt, args);