compat-wireless: Fix ath9k debug log issue.
authorSenthil Balasubramanian <senthilkumar@atheros.com>
Mon, 31 Jan 2011 11:37:45 +0000 (17:07 +0530)
committerLuis R. Rodriguez <lrodriguez@atheros.com>
Mon, 31 Jan 2011 18:16:43 +0000 (10:16 -0800)
ath9k debug logs are not shown as we are using recursive vsnprintf
which are supported in kernel 2.6.36 and above. use vprintk for older
kernels.

This patch has fixed the issue.

Signed-off-by: Senthil Balasubramanian <senthilkumar@atheros.com>
patches/37-vsnprintk.patch [new file with mode: 0644]

diff --git a/patches/37-vsnprintk.patch b/patches/37-vsnprintk.patch
new file mode 100644 (file)
index 0000000..93d1a00
--- /dev/null
@@ -0,0 +1,28 @@
+diff --git a/drivers/net/wireless/ath/main.c b/drivers/net/wireless/ath/main.c
+index c325202..e3e60d4 100644
+--- a/drivers/net/wireless/ath/main.c
++++ b/drivers/net/wireless/ath/main.c
+@@ -60,16 +60,23 @@ EXPORT_SYMBOL(ath_rxbuf_alloc);
+ int ath_printk(const char *level, struct ath_common *common,
+              const char *fmt, ...)
+ {
++#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,36))
+       struct va_format vaf;
++#endif
+       va_list args;
+       int rtn;
+       va_start(args, fmt);
++#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,36))
+       vaf.fmt = fmt;
+       vaf.va = &args;
+       rtn = printk("%sath: %pV", level, &vaf);
++#else
++      printk("%sath: ", level);
++      rtn = vprintk(fmt, args);
++#endif
+       va_end(args);