From patchwork Tue Jan 18 12:36:02 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Anton Vorontsov X-Patchwork-Id: 79296 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 CDFA2B70FF for ; Tue, 18 Jan 2011 23:36:12 +1100 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751207Ab1ARMgI (ORCPT ); Tue, 18 Jan 2011 07:36:08 -0500 Received: from mail-ew0-f46.google.com ([209.85.215.46]:33146 "EHLO mail-ew0-f46.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750893Ab1ARMgH (ORCPT ); Tue, 18 Jan 2011 07:36:07 -0500 Received: by ewy5 with SMTP id 5so3192523ewy.19 for ; Tue, 18 Jan 2011 04:36:05 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:date:from:to:cc:subject:message-id:mime-version :content-type:content-disposition:user-agent; bh=gw7i84rdfPIzfquZ/ixpobmFzvllYFyk+jFxiw4BXOI=; b=URYj6XjgTvmhZWJ5k0/51MhQe3yozd+VTobN8ry/0aYWdZyMer+D+H9GOV0WJQDIsV KDovMRYCU1yeQ0H+7oaMAyEXXPa5GxJQRZ0Li2ahZYl9DYgLZBfoEOkMsCKd+WL9hExI 68HuJAmmLucmf6t96PtSiIAL63f9rT2/ntrQ4= 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=GOotnPZvBGgtKUO5bai20BIqMDFQXGGF9eUmDjpaACMQiUkD51cF9VBXvHR8K20AV7 z9/VrLTJl0MF16uO/AiAhKMQ80K/qUENteUDCPLaMmK2ke1AKyrMfqRwC2X9hNMNVAL/ PKwTKiTA37zqtfjSyjM0kN6ChLKOzNq81Hv94= Received: by 10.14.0.133 with SMTP id 5mr4678495eeb.10.1295354165059; Tue, 18 Jan 2011 04:36:05 -0800 (PST) Received: from localhost (mail.dev.rtsoft.ru [213.79.90.226]) by mx.google.com with ESMTPS id t5sm4535913eeh.2.2011.01.18.04.36.03 (version=TLSv1/SSLv3 cipher=RC4-MD5); Tue, 18 Jan 2011 04:36:04 -0800 (PST) Date: Tue, 18 Jan 2011 15:36:02 +0300 From: Anton Vorontsov To: David Miller Cc: netdev@vger.kernel.org Subject: [PATCH] gianfar: Fix misleading indentation in startup_gfar() Message-ID: <20110118123602.GA26997@oksana.dev.rtsoft.ru> MIME-Version: 1.0 Content-Disposition: inline User-Agent: Mutt/1.5.20 (2009-06-14) Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org Just stumbled upon the issue while looking for another bug. The code looks correct, the indentation is not. Signed-off-by: Anton Vorontsov --- drivers/net/gianfar.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/net/gianfar.c b/drivers/net/gianfar.c index 119aa20..5ed8f9f 100644 --- a/drivers/net/gianfar.c +++ b/drivers/net/gianfar.c @@ -1920,7 +1920,7 @@ int startup_gfar(struct net_device *ndev) if (err) { for (j = 0; j < i; j++) free_grp_irqs(&priv->gfargrp[j]); - goto irq_fail; + goto irq_fail; } }