summaryrefslogtreecommitdiffstats
path: root/package/mac80211/patches/303-pending-ath9k-add-EEPROM-offset-to-debug-message.patch
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2013-01-09 12:45:28 +0000
committerFelix Fietkau <nbd@openwrt.org>2013-01-09 12:45:28 +0000
commit5c9fd3b2d26012f8b77d1f5c86bf0b9223460cf4 (patch)
tree3b9cc236acb707d3a563f84f91f5d7fc6c183bd4 /package/mac80211/patches/303-pending-ath9k-add-EEPROM-offset-to-debug-message.patch
parent4834d09a3f91622bb78e2163181a976933a96c43 (diff)
downloadmaster-31e0f0ae-5c9fd3b2d26012f8b77d1f5c86bf0b9223460cf4.tar.gz
master-31e0f0ae-5c9fd3b2d26012f8b77d1f5c86bf0b9223460cf4.tar.bz2
master-31e0f0ae-5c9fd3b2d26012f8b77d1f5c86bf0b9223460cf4.zip
mac80211: update to 2013-01-07, add several ath9k stability fixes
SVN-Revision: 35063
Diffstat (limited to 'package/mac80211/patches/303-pending-ath9k-add-EEPROM-offset-to-debug-message.patch')
-rw-r--r--package/mac80211/patches/303-pending-ath9k-add-EEPROM-offset-to-debug-message.patch26
1 files changed, 0 insertions, 26 deletions
diff --git a/package/mac80211/patches/303-pending-ath9k-add-EEPROM-offset-to-debug-message.patch b/package/mac80211/patches/303-pending-ath9k-add-EEPROM-offset-to-debug-message.patch
deleted file mode 100644
index d0561938e8..0000000000
--- a/package/mac80211/patches/303-pending-ath9k-add-EEPROM-offset-to-debug-message.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-From 910b74fb0e0369b18aa689ab02c9413235c18f98 Mon Sep 17 00:00:00 2001
-From: Gabor Juhos <juhosg@openwrt.org>
-Date: Sun, 9 Dec 2012 16:47:35 +0100
-Subject: [PATCH 2/4] ath9k: add EEPROM offset to debug message
-
-Show the EEPROM offset of the failed read operation
-in 'ath9k_hw_nvram_read'. The debug message is more
-informative this way.
-
-Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
----
- drivers/net/wireless/ath/ath9k/eeprom.c | 3 ++-
- 1 file changed, 2 insertions(+), 1 deletion(-)
-
---- a/drivers/net/wireless/ath/ath9k/eeprom.c
-+++ b/drivers/net/wireless/ath/ath9k/eeprom.c
-@@ -119,7 +119,8 @@ bool ath9k_hw_nvram_read(struct ath_comm
-
- ret = common->bus_ops->eeprom_read(common, off, data);
- if (!ret)
-- ath_dbg(common, EEPROM, "Unable to read eeprom region\n");
-+ ath_dbg(common, EEPROM,
-+ "unable to read eeprom region at offset %u\n", off);
-
- return ret;
- }