atl1c: wrong register used to stop TXQ
authorHuang, Xiong <xiong@qca.qualcomm.com>
Tue, 17 Apr 2012 19:32:32 +0000 (19:32 +0000)
committerDavid S. Miller <davem@davemloft.net>
Wed, 18 Apr 2012 19:35:31 +0000 (15:35 -0400)
function atl1c_stop_mac uses wrong register of REG_TWSI_CTRL
to stop mac, replace it with REG_TXQ_CTRL.

Signed-off-by: xiong <xiong@qca.qualcomm.com>
Tested-by: Liu David <dwliu@qca.qualcomm.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/atheros/atl1c/atl1c_main.c

index 00c8bd1c791d61f724c66046f0da22c458f1fb7c..7688915172a5c1c8e5666b1de042fa78ce3ec913 100644 (file)
@@ -1142,7 +1142,7 @@ static int atl1c_stop_mac(struct atl1c_hw *hw)
 
        AT_READ_REG(hw, REG_TXQ_CTRL, &data);
        data &= ~TXQ_CTRL_EN;
-       AT_WRITE_REG(hw, REG_TWSI_CTRL, data);
+       AT_WRITE_REG(hw, REG_TXQ_CTRL, data);
 
        atl1c_wait_until_idle(hw);