From patchwork Mon Jun 1 02:07:58 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: jie.yang@atheros.com X-Patchwork-Id: 27895 X-Patchwork-Delegate: davem@davemloft.net Return-Path: X-Original-To: patchwork-incoming@bilbo.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from ozlabs.org (ozlabs.org [203.10.76.45]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "mx.ozlabs.org", Issuer "CA Cert Signing Authority" (verified OK)) by bilbo.ozlabs.org (Postfix) with ESMTPS id 54255B7043 for ; Mon, 1 Jun 2009 12:10:18 +1000 (EST) Received: by ozlabs.org (Postfix) id 45F5CDDDE2; Mon, 1 Jun 2009 12:10:18 +1000 (EST) Delivered-To: patchwork-incoming@ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.176.167]) by ozlabs.org (Postfix) with ESMTP id C7177DDDA0 for ; Mon, 1 Jun 2009 12:10:17 +1000 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754319AbZFACKE (ORCPT ); Sun, 31 May 2009 22:10:04 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1753961AbZFACKD (ORCPT ); Sun, 31 May 2009 22:10:03 -0400 Received: from mail.atheros.com ([12.36.123.2]:18389 "EHLO mail.atheros.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753924AbZFACKB (ORCPT ); Sun, 31 May 2009 22:10:01 -0400 Received: from mail.atheros.com ([10.10.20.105]) by sidewinder.atheros.com for ; Sun, 31 May 2009 19:10:04 -0700 Received: from localhost (10.21.2.65) by SC1EXHC-01.global.atheros.com (10.10.20.106) with Microsoft SMTP Server id 8.0.751.0; Sun, 31 May 2009 19:10:03 -0700 From: To: CC: , , , Jie Yang Subject: [PATCH net-next]atl1c: fix spelling error Date: Mon, 1 Jun 2009 10:07:58 +0800 Message-ID: <12438220782521-git-send-email-jie.yang@atheros.com> X-Mailer: git-send-email 1.5.2.2 MIME-Version: 1.0 Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org Fix spelling error Signed-off-by: Jie Yang --- -- To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html diff --git a/drivers/net/atl1c/atl1c_main.c b/drivers/net/atl1c/atl1c_main.c index 598c294..8475ff4 100644 --- a/drivers/net/atl1c/atl1c_main.c +++ b/drivers/net/atl1c/atl1c_main.c @@ -1115,7 +1115,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); for (timeout = 0; timeout < AT_HW_MAX_IDLE_DELAY; timeout++) { AT_READ_REG(hw, REG_IDLE_STATUS, &data);