aboutsummaryrefslogtreecommitdiff
path: root/drivers/net/wireless/ath/ath9k/eeprom_def.c
diff options
context:
space:
mode:
authorGravatar Gabor Juhos <juhosg@openwrt.org> 2012-12-10 15:30:25 +0100
committerGravatar John W. Linville <linville@tuxdriver.com> 2012-12-10 15:49:54 -0500
commit2fd2cdfb6d2f3c3d18f2e47f41679a7bde9bcbf3 (patch)
tree1a0bf2637383c55b616de415f227d24660108ae1 /drivers/net/wireless/ath/ath9k/eeprom_def.c
parentath9k_hw: Fix signal strength / channel noise reporting (diff)
downloadlinux-2fd2cdfb6d2f3c3d18f2e47f41679a7bde9bcbf3.tar.gz
linux-2fd2cdfb6d2f3c3d18f2e47f41679a7bde9bcbf3.tar.bz2
linux-2fd2cdfb6d2f3c3d18f2e47f41679a7bde9bcbf3.zip
ath9k: move duplicated debug message to 'ath9k_hw_nvram_read'
The fill_eeprom functions are printing the same debug message in case the 'ath9k_hw_nvram_read' function fails. Remove the duplicated code from fill_eeprom functions and add the ath_dbg call directly into 'ath9k_hw_nvram_read'. Signed-off-by: Gabor Juhos <juhosg@openwrt.org> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/ath/ath9k/eeprom_def.c')
-rw-r--r--drivers/net/wireless/ath/ath9k/eeprom_def.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/drivers/net/wireless/ath/ath9k/eeprom_def.c b/drivers/net/wireless/ath/ath9k/eeprom_def.c
index a8ac30a00720..2654f741b8bf 100644
--- a/drivers/net/wireless/ath/ath9k/eeprom_def.c
+++ b/drivers/net/wireless/ath/ath9k/eeprom_def.c
@@ -97,11 +97,8 @@ static bool __ath9k_hw_def_fill_eeprom(struct ath_hw *ah)
for (addr = 0; addr < SIZE_EEPROM_DEF; addr++) {
if (!ath9k_hw_nvram_read(common, addr + ar5416_eep_start_loc,
- eep_data)) {
- ath_err(ath9k_hw_common(ah),
- "Unable to read eeprom region\n");
+ eep_data))
return false;
- }
eep_data++;
}
return true;