[<prev] [next>] [day] [month] [year] [list]
Message-ID: <20130917213540.GA32010@redhat.com>
Date: Tue, 17 Sep 2013 17:35:40 -0400
From: Dave Jones <davej@...hat.com>
To: netdev@...r.kernel.org
Cc: mcgrof@....qualcomm.com, linville@...driver.com
Subject: ath9k: remove self-assignment in ath9k_eeprom_request
Assigning a variable to itself is pointless, moreso when it's overwritten immediately.
Introduced in ab5c4f71d8c7add173a2d32e5beefdaaf1b7cbbc
("ath9k: allow to load EEPROM content via firmware API")
Signed-off-by: Dave Jones <davej@...oraproject.org>
diff --git a/drivers/net/wireless/ath/ath9k/init.c b/drivers/net/wireless/ath/ath9k/init.c
index 9a1f349..0cb3f2d 100644
--- a/drivers/net/wireless/ath/ath9k/init.c
+++ b/drivers/net/wireless/ath/ath9k/init.c
@@ -572,7 +572,7 @@ static void ath9k_eeprom_request_cb(const struct firmware *eeprom_blob,
static int ath9k_eeprom_request(struct ath_softc *sc, const char *name)
{
struct ath9k_eeprom_ctx ec;
- struct ath_hw *ah = ah = sc->sc_ah;
+ struct ath_hw *ah = sc->sc_ah;
int err;
/* try to load the EEPROM content asynchronously */
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists