From: Martin Blumenstingl Date: Thu, 23 Jun 2016 14:57:10 +0000 (+0200) Subject: ath9k: remove variable which is set but never read X-Git-Tag: v4.8-rc1~140^2~29^2~9^2~11 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=b27301f86cc7e2352b266d386e3d77915cfe98f1;p=uclinux-h8%2Flinux.git ath9k: remove variable which is set but never read No functional changes - this only removes a variable which is set but never read. Signed-off-by: Martin Blumenstingl Reviewed-by: Julian Calaby Signed-off-by: Kalle Valo --- diff --git a/drivers/net/wireless/ath/ath9k/hw.c b/drivers/net/wireless/ath/ath9k/hw.c index 8b2895f9ac7a..4f98ca0f9888 100644 --- a/drivers/net/wireless/ath/ath9k/hw.c +++ b/drivers/net/wireless/ath/ath9k/hw.c @@ -474,15 +474,12 @@ static void ath9k_hw_init_defaults(struct ath_hw *ah) static int ath9k_hw_init_macaddr(struct ath_hw *ah) { struct ath_common *common = ath9k_hw_common(ah); - u32 sum; int i; u16 eeval; static const u32 EEP_MAC[] = { EEP_MAC_LSW, EEP_MAC_MID, EEP_MAC_MSW }; - sum = 0; for (i = 0; i < 3; i++) { eeval = ah->eep_ops->get_eeprom(ah, EEP_MAC[i]); - sum += eeval; common->macaddr[2 * i] = eeval >> 8; common->macaddr[2 * i + 1] = eeval & 0xff; }