From patchwork Mon Sep 7 03:15:20 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Barry Song <21cnbao@gmail.com> X-Patchwork-Id: 514967 X-Patchwork-Delegate: davem@davemloft.net Return-Path: X-Original-To: patchwork-incoming@ozlabs.org Delivered-To: patchwork-incoming@ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id B248A140321 for ; Mon, 7 Sep 2015 13:07:52 +1000 (AEST) Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (2048-bit key; unprotected) header.d=gmail.com header.i=@gmail.com header.b=c1o97Fyz; dkim-atps=neutral Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753420AbbIGDHt (ORCPT ); Sun, 6 Sep 2015 23:07:49 -0400 Received: from mail-pa0-f51.google.com ([209.85.220.51]:34608 "EHLO mail-pa0-f51.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753208AbbIGDHr (ORCPT ); Sun, 6 Sep 2015 23:07:47 -0400 Received: by padhy16 with SMTP id hy16so79905606pad.1 for ; Sun, 06 Sep 2015 20:07:45 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id; bh=ZL5c1EWO2/ficdAoUBRbvsX/UqR/Ow4j81sMyp02IEE=; b=c1o97FyzZePyItTMUgq0SROes/erSVga+q4vqokr+EA2H8oTD8mHLNfBTIqx/Fi92G swjFDnNoEv4xaRhPoGANGIPa2ac//rbFm+XcOlkcWx6T5enZ2kbhz+mv67qAi+i9CPFw oBxX1cOxY+aby+ZCLUld0QhM/wtRvPv8XkHhLpLKsqF/n11hxxVVGg3CNidBsqwbPn3F GGyWmCa4fl8IokYw/1pSe+hJSNCIGdbSEfK5NWl0YxeTCi9MceVaEqrE2XsADdcqAAPB o5GEq/vgywpz3kAVk38BSDk4w+tS8s6gpQKMf5O92q5wqUdDs0u6n3fiiex2hDBBP6oE v6eA== X-Received: by 10.68.177.4 with SMTP id cm4mr40065362pbc.76.1441595265006; Sun, 06 Sep 2015 20:07:45 -0700 (PDT) Received: from ip-172-31-29-47.ap-northeast-1.compute.internal (ec2-54-65-106-64.ap-northeast-1.compute.amazonaws.com. [54.65.106.64]) by smtp.gmail.com with ESMTPSA id fg5sm10009057pdb.33.2015.09.06.20.07.42 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Sun, 06 Sep 2015 20:07:44 -0700 (PDT) From: Barry Song <21cnbao@gmail.com> To: davem@davemloft.net, nikita@compulab.co.il, grinberg@compulab.co.il, jg1.han@samsung.com, mugunthanvnm@ti.com, netdev@vger.kernel.org Cc: Barry Song Subject: [PATCH] dm9000: fix a typo Date: Mon, 7 Sep 2015 03:15:20 +0000 Message-Id: <1441595720-31975-1-git-send-email-21cnbao@gmail.com> X-Mailer: git-send-email 1.9.1 Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org From: Barry Song Signed-off-by: Barry Song --- drivers/net/ethernet/davicom/dm9000.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/net/ethernet/davicom/dm9000.c b/drivers/net/ethernet/davicom/dm9000.c index c0a7813..cf94b72 100644 --- a/drivers/net/ethernet/davicom/dm9000.c +++ b/drivers/net/ethernet/davicom/dm9000.c @@ -1226,7 +1226,7 @@ static irqreturn_t dm9000_interrupt(int irq, void *dev_id) if (int_status & ISR_PRS) dm9000_rx(dev); - /* Trnasmit Interrupt check */ + /* Transmit Interrupt check */ if (int_status & ISR_PTS) dm9000_tx_done(dev, db);