From be4a0f9ad7e17670d7a30c9e94d5dd918425f90a Mon Sep 17 00:00:00 2001 From: "Luis R. Rodriguez" Date: Fri, 11 Apr 2014 01:45:20 +0000 Subject: backports: nuke support for kernels < 3.0 mcgrof@drvbp1 ~/backports (git::master)$ time ./gentree.py --clean /home/mcgrof/linux-next /home/mcgrof/build/next-20140409 Copy original source files ... Apply patches ... Modify Kconfig tree ... Rewrite Makefiles and Kconfig files ... Done! real 1m30.186s user 9m25.180s sys 0m24.428s mcgrof@drvbp1 ~/build/next-20140409 $ time ckmake --allyesconfig 1 3.0.101 [ OK ] 2 3.1.10 [ OK ] 3 3.2.54 [ OK ] 4 3.3.8 [ OK ] 5 3.4.79 [ OK ] 6 3.5.7 [ OK ] 7 3.6.11 [ OK ] 8 3.7.10 [ OK ] 9 3.8.13 [ OK ] 10 3.9.11 [ OK ] 11 3.10.29 [ OK ] 12 3.11.10 [ OK ] 13 3.12.10 [ OK ] 14 3.13.2 [ OK ] 15 3.14-rc1 [ OK ] real 26m54.859s user 744m15.764s sys 83m47.440s Signed-off-by: Luis R. Rodriguez --- .../drivers_net_wireless_ath_main.patch | 35 ---------------------- 1 file changed, 35 deletions(-) delete mode 100644 patches/collateral-evolutions/network/37-vsnprintk/drivers_net_wireless_ath_main.patch (limited to 'patches/collateral-evolutions/network/37-vsnprintk/drivers_net_wireless_ath_main.patch') diff --git a/patches/collateral-evolutions/network/37-vsnprintk/drivers_net_wireless_ath_main.patch b/patches/collateral-evolutions/network/37-vsnprintk/drivers_net_wireless_ath_main.patch deleted file mode 100644 index b63faeeb..00000000 --- a/patches/collateral-evolutions/network/37-vsnprintk/drivers_net_wireless_ath_main.patch +++ /dev/null @@ -1,35 +0,0 @@ ---- a/drivers/net/wireless/ath/main.c -+++ b/drivers/net/wireless/ath/main.c -@@ -67,6 +67,7 @@ bool ath_is_mybeacon(struct ath_common * - } - EXPORT_SYMBOL(ath_is_mybeacon); - -+#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,36)) - void ath_printk(const char *level, const struct ath_common* common, - const char *fmt, ...) - { -@@ -86,4 +87,24 @@ void ath_printk(const char *level, const - - va_end(args); - } -+#else -+void ath_printk(const char *level, const struct ath_common* common, -+ const char *fmt, ...) -+{ -+ va_list args; -+ -+ va_start(args, fmt); -+ -+ if (common && common->hw && common->hw->wiphy) -+ printk("%sath: %s: ", -+ level, wiphy_name(common->hw->wiphy)); -+ else -+ printk("%sath: ", level); -+ -+ vprintk(fmt, args); -+ -+ va_end(args); -+} -+#endif -+ - EXPORT_SYMBOL(ath_printk); -- cgit v1.2.3