backports: remove iwlwifi dev_dbg() patch
authorJohannes Berg <johannes.berg@intel.com>
Mon, 15 Apr 2013 21:45:13 +0000 (23:45 +0200)
committerJohannes Berg <johannes.berg@intel.com>
Mon, 15 Apr 2013 21:45:13 +0000 (23:45 +0200)
This is no longer needed since now the compat headers
don't pre-include half the world any more.

Signed-off-by: Johannes Berg <johannes.berg@intel.com>
patches/collateral-evolutions/network/57-iwlwifi-debug-fix/INFO [deleted file]
patches/collateral-evolutions/network/57-iwlwifi-debug-fix/drivers_net_wireless_iwlwifi_iwl-debug.patch [deleted file]

diff --git a/patches/collateral-evolutions/network/57-iwlwifi-debug-fix/INFO b/patches/collateral-evolutions/network/57-iwlwifi-debug-fix/INFO
deleted file mode 100644 (file)
index 98fdfd1..0000000
+++ /dev/null
@@ -1,5 +0,0 @@
-Due to compat including linux/device.h before we do,
-we don't get a chance to #define DEBUG to get our
-debugging prints. This patch replaces dev_dbg with
-dev_printk to make them show up again.
-
diff --git a/patches/collateral-evolutions/network/57-iwlwifi-debug-fix/drivers_net_wireless_iwlwifi_iwl-debug.patch b/patches/collateral-evolutions/network/57-iwlwifi-debug-fix/drivers_net_wireless_iwlwifi_iwl-debug.patch
deleted file mode 100644 (file)
index e5d395a..0000000
+++ /dev/null
@@ -1,14 +0,0 @@
---- a/drivers/net/wireless/iwlwifi/iwl-debug.c
-+++ b/drivers/net/wireless/iwlwifi/iwl-debug.c
-@@ -139,8 +139,9 @@ void __iwl_dbg(struct device *dev,
-               va_copy(args2, args);
-               vaf.va = &args2;
--              dev_dbg(dev, "%c %s %pV", in_interrupt() ? 'I' : 'U',
--                      function, &vaf);
-+              dev_printk(KERN_DEBUG, dev, "%c %s %pV",
-+                         in_interrupt() ? 'I' : 'U',
-+                         function, &vaf);
-               va_end(args2);
-       }
- #endif