From 23fe7d4e4f141228f550ebb73d9f206f2207bdfe Mon Sep 17 00:00:00 2001 From: Gabor Juhos Date: Mon, 10 Dec 2012 15:46:15 +0000 Subject: mac80211: ath9k: allow to load EEPROM data via firmware API Signed-off-by: Gabor Juhos git-svn-id: svn://svn.openwrt.org/openwrt/trunk@34606 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- ...-ath9k-add-EEPROM-offset-to-debug-message.patch | 26 ++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 package/mac80211/patches/303-pending-ath9k-add-EEPROM-offset-to-debug-message.patch (limited to 'package/mac80211/patches/303-pending-ath9k-add-EEPROM-offset-to-debug-message.patch') 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 new file mode 100644 index 0000000000..d0561938e8 --- /dev/null +++ b/package/mac80211/patches/303-pending-ath9k-add-EEPROM-offset-to-debug-message.patch @@ -0,0 +1,26 @@ +From 910b74fb0e0369b18aa689ab02c9413235c18f98 Mon Sep 17 00:00:00 2001 +From: Gabor Juhos +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 +--- + 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; + } -- cgit v1.2.3