From patchwork Fri Nov 9 11:39:57 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tushar Behera X-Patchwork-Id: 12788 Return-Path: X-Original-To: patchwork@peony.canonical.com Delivered-To: patchwork@peony.canonical.com Received: from fiordland.canonical.com (fiordland.canonical.com [91.189.94.145]) by peony.canonical.com (Postfix) with ESMTP id DFF854C16A7 for ; Fri, 9 Nov 2012 11:46:16 +0000 (UTC) Received: from mail-ie0-f180.google.com (mail-ie0-f180.google.com [209.85.223.180]) by fiordland.canonical.com (Postfix) with ESMTP id 95A88A18DFB for ; Fri, 9 Nov 2012 11:46:16 +0000 (UTC) Received: by mail-ie0-f180.google.com with SMTP id e10so5478728iej.11 for ; Fri, 09 Nov 2012 03:46:16 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=x-forwarded-to:x-forwarded-for:delivered-to:received-spf:from:to:cc :subject:date:message-id:x-mailer:in-reply-to:references :x-gm-message-state; bh=lrgqBuz1yvepYPYXSkRvgX5/MYVPldBOEBzw+2XZw4k=; b=Ra1yyEyr6ulm1L7nQ6MQivRX//r3dhP6JJKI2aFHEOknu7UiO7oXSiTsXjCfEHyLid x5uc4O6VO57HLghOBRb+9TF5toqSR2GKLq3/x0C/lB3PXPgOUv6eziR/2cv37wy0cUr6 PWL4Ne32FjSsQQqBl3/r8fEuumwNCm4gQ+ULfG++7rnVAFrvTKqi+AA22yWtoXufWmeG gm1aDipY7u5Sx7nPYsjfRJ5gsF/xKI0PKWBlZwJKIkkkzi8EQmts4gu+qIutQKs433PN NJH4vVdYa2+bRoxJ1RAUo9s0xW0kxZ957ZHHX4un6PHysmY23Qu2yb6rA4DefA88sYjL QZ1g== Received: by 10.43.7.132 with SMTP id oo4mr9740958icb.6.1352461576384; Fri, 09 Nov 2012 03:46:16 -0800 (PST) X-Forwarded-To: linaro-patchwork@canonical.com X-Forwarded-For: patch@linaro.org linaro-patchwork@canonical.com Delivered-To: patches@linaro.org Received: by 10.50.67.148 with SMTP id n20csp15778igt; Fri, 9 Nov 2012 03:46:16 -0800 (PST) Received: by 10.68.216.73 with SMTP id oo9mr26245956pbc.80.1352461575928; Fri, 09 Nov 2012 03:46:15 -0800 (PST) Received: from mail-da0-f50.google.com (mail-da0-f50.google.com [209.85.210.50]) by mx.google.com with ESMTPS id bf10si39071529pab.50.2012.11.09.03.46.15 (version=TLSv1/SSLv3 cipher=OTHER); Fri, 09 Nov 2012 03:46:15 -0800 (PST) Received-SPF: neutral (google.com: 209.85.210.50 is neither permitted nor denied by best guess record for domain of tushar.behera@linaro.org) client-ip=209.85.210.50; Authentication-Results: mx.google.com; spf=neutral (google.com: 209.85.210.50 is neither permitted nor denied by best guess record for domain of tushar.behera@linaro.org) smtp.mail=tushar.behera@linaro.org Received: by mail-da0-f50.google.com with SMTP id z20so1508250dae.9 for ; Fri, 09 Nov 2012 03:46:15 -0800 (PST) Received: by 10.68.224.8 with SMTP id qy8mr26003432pbc.88.1352461575699; Fri, 09 Nov 2012 03:46:15 -0800 (PST) Received: from localhost.localdomain ([115.113.119.130]) by mx.google.com with ESMTPS id tm8sm17629901pbc.48.2012.11.09.03.46.12 (version=TLSv1/SSLv3 cipher=OTHER); Fri, 09 Nov 2012 03:46:15 -0800 (PST) From: Tushar Behera To: linux-kernel@vger.kernel.org, linux-mmc@vger.kernel.org Cc: cjb@laptop.org, patches@linaro.org Subject: [PATCH 7/8] mmc: sdhci: fix coding style in sdhci_data_irq Date: Fri, 9 Nov 2012 17:09:57 +0530 Message-Id: <1352461198-21941-8-git-send-email-tushar.behera@linaro.org> X-Mailer: git-send-email 1.7.4.1 In-Reply-To: <1352461198-21941-1-git-send-email-tushar.behera@linaro.org> References: <1352461198-21941-1-git-send-email-tushar.behera@linaro.org> X-Gm-Message-State: ALoCoQkzu4/nsrefRdV/UNZBfzg9edaycCtyzbtOBA19FhXHs3FXCI2dFLxYHCgvfYajlTFVQYCL Signed-off-by: Tushar Behera --- drivers/mmc/host/sdhci.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/mmc/host/sdhci.c b/drivers/mmc/host/sdhci.c index 4bed582..47cac71 100644 --- a/drivers/mmc/host/sdhci.c +++ b/drivers/mmc/host/sdhci.c @@ -2286,9 +2286,9 @@ static void sdhci_data_irq(struct sdhci_host *host, u32 intmask) host->data->error = -EIO; } - if (host->data->error) + if (host->data->error) { sdhci_finish_data(host); - else { + } else { if (intmask & (SDHCI_INT_DATA_AVAIL | SDHCI_INT_SPACE_AVAIL)) sdhci_transfer_pio(host);