From patchwork Mon Feb 1 10:19:07 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jarek Poplawski X-Patchwork-Id: 44175 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 92FD3B7D56 for ; Mon, 1 Feb 2010 21:19:20 +1100 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752903Ab0BAKTP (ORCPT ); Mon, 1 Feb 2010 05:19:15 -0500 Received: from mail-fx0-f220.google.com ([209.85.220.220]:36802 "EHLO mail-fx0-f220.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751424Ab0BAKTO (ORCPT ); Mon, 1 Feb 2010 05:19:14 -0500 Received: by fxm20 with SMTP id 20so4027600fxm.21 for ; Mon, 01 Feb 2010 02:19:12 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:date:from:to:cc:subject :message-id:mime-version:content-type:content-disposition:user-agent; bh=i6dGwEkOZTZYGGsXOqQqv6a+05J3TrmQfgoVG5TEZJI=; b=a2PTHVlioXiKgXBebKqyCGKHypsw8MqkLoVryK4n0FKQmHSvnLJZ1QqKlD622GVeaL els8fCBvTLQXi+V8uvggbnHLF7AQDk4yTT0BwQ0T0U46WzDTeXPjcvvsjm6SIMYmQP9g KdCk3VGonvSowojBlH5a4lLjsGsM6xhvBK8Vw= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=date:from:to:cc:subject:message-id:mime-version:content-type :content-disposition:user-agent; b=SlnjLrTkSPuJrlyB+m2IVDHUPz2gmQ9mXeGf3y05mCmErowTzK+Z+pFRxmvACnwufd OqVJfFcrddngWuYzMJbeSvovumgz65D+aoqzZNSNx3oaRkLHg2uQKg9A3NhZy0ZZ+X+4 Cc6hjnWsrdceZnkDwSF7tIGKXysKaOVIFFDLY= Received: by 10.223.7.4 with SMTP id b4mr4208084fab.102.1265019552708; Mon, 01 Feb 2010 02:19:12 -0800 (PST) Received: from ff.dom.local (bv170.internetdsl.tpnet.pl [80.53.205.170]) by mx.google.com with ESMTPS id 15sm1772821fxm.6.2010.02.01.02.19.10 (version=SSLv3 cipher=RC4-MD5); Mon, 01 Feb 2010 02:19:11 -0800 (PST) Date: Mon, 1 Feb 2010 10:19:07 +0000 From: Jarek Poplawski To: David Miller Cc: Michael Breuer , Stephen Hemminger , netdev@vger.kernel.org Subject: [PATCH net-next] sky2: Fix TX_MAP_PAGE misspelling Message-ID: <20100201101907.GA12132@ff.dom.local> MIME-Version: 1.0 Content-Disposition: inline User-Agent: Mutt/1.5.18 (2008-05-17) Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org Btw of the dma-debug problem reported by Michael Breuer I spotted a tiny misspelling in TX_MAP_PAGE definition introduced by commit 6b84dacadbdc3. Signed-off-by: Jarek Poplawski --- drivers/net/sky2.h | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) -- 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/sky2.h b/drivers/net/sky2.h index 365d79c..54cb303 100644 --- a/drivers/net/sky2.h +++ b/drivers/net/sky2.h @@ -2156,7 +2156,7 @@ struct tx_ring_info { struct sk_buff *skb; unsigned long flags; #define TX_MAP_SINGLE 0x0001 -#define TX_MAP_PAGE 000002 +#define TX_MAP_PAGE 0x0002 DECLARE_PCI_UNMAP_ADDR(mapaddr); DECLARE_PCI_UNMAP_LEN(maplen); };