From patchwork Fri Nov 9 11:39:52 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tushar Behera X-Patchwork-Id: 12783 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 3879C4C16A7 for ; Fri, 9 Nov 2012 11:46:00 +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 DAAB0A18790 for ; Fri, 9 Nov 2012 11:45:59 +0000 (UTC) Received: by mail-ie0-f180.google.com with SMTP id e10so5478728iej.11 for ; Fri, 09 Nov 2012 03:45:59 -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=tyGGynBIWkpblcC54kIqd/zSy8GB2aFTYgIqcrq1jIU=; b=NGGZaCN+K3/XvQHDnneGMsJ6NQAmq5je+3XXozmgHKmZ+Qhe9W6qwEMq3W/zffHiCZ eU92LEdfYEYZD9vdkhU2WlkrO9O0gxaxIBrSUniAvbukAC6IInx3o6c155iw8jnW+4z4 agMtpQWaXUS7WprxrVA2xdzZbnIi1nEYNzfOoI8fWZulojrQ+P9kuSNrpHZLgDhbAIfL F4gxmqX2wYRyyWHu91fohZLjGv3Eic8AhMyi0Li7xgYFGnaRH1Q+Y9yAohdrmTsg06MJ z6EqvYDJU4BDg6Lp0FBCigmYaw11O7KhW4Zk22TP5ngbB8m0I3OhNV1YZy6hXmFdDlNo P24A== Received: by 10.50.140.97 with SMTP id rf1mr987100igb.70.1352461559667; Fri, 09 Nov 2012 03:45:59 -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 n20csp15742igt; Fri, 9 Nov 2012 03:45:59 -0800 (PST) Received: by 10.66.89.38 with SMTP id bl6mr24564650pab.9.1352461558975; Fri, 09 Nov 2012 03:45:58 -0800 (PST) Received: from mail-pa0-f54.google.com (mail-pa0-f54.google.com [209.85.220.54]) by mx.google.com with ESMTPS id m5si39012078paw.281.2012.11.09.03.45.58 (version=TLSv1/SSLv3 cipher=OTHER); Fri, 09 Nov 2012 03:45:58 -0800 (PST) Received-SPF: neutral (google.com: 209.85.220.54 is neither permitted nor denied by best guess record for domain of tushar.behera@linaro.org) client-ip=209.85.220.54; Authentication-Results: mx.google.com; spf=neutral (google.com: 209.85.220.54 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-pa0-f54.google.com with SMTP id bi1so2596109pad.41 for ; Fri, 09 Nov 2012 03:45:58 -0800 (PST) Received: by 10.66.72.134 with SMTP id d6mr31108911pav.13.1352461558452; Fri, 09 Nov 2012 03:45:58 -0800 (PST) Received: from localhost.localdomain ([115.113.119.130]) by mx.google.com with ESMTPS id tm8sm17629901pbc.48.2012.11.09.03.45.55 (version=TLSv1/SSLv3 cipher=OTHER); Fri, 09 Nov 2012 03:45:57 -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 2/8] mmc: sdhci: fix coding style in sdhci_set_transfer_mode Date: Fri, 9 Nov 2012 17:09:52 +0530 Message-Id: <1352461198-21941-3-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: ALoCoQkdy+tNK2L1fl6B1SAQOF1t+6EUdaG8CDJxMphChpnKCS5NuS+yhFi7XYh+hO0DV5eZ68QF 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 2ff2b9e..2d3d76e 100644 --- a/drivers/mmc/host/sdhci.c +++ b/drivers/mmc/host/sdhci.c @@ -898,9 +898,9 @@ static void sdhci_set_transfer_mode(struct sdhci_host *host, * If we are sending CMD23, CMD12 never gets sent * on successful completion (so no Auto-CMD12). */ - if (!host->mrq->sbc && (host->flags & SDHCI_AUTO_CMD12)) + if (!host->mrq->sbc && (host->flags & SDHCI_AUTO_CMD12)) { mode |= SDHCI_TRNS_AUTO_CMD12; - else if (host->mrq->sbc && (host->flags & SDHCI_AUTO_CMD23)) { + } else if (host->mrq->sbc && (host->flags & SDHCI_AUTO_CMD23)) { mode |= SDHCI_TRNS_AUTO_CMD23; sdhci_writel(host, host->mrq->sbc->arg, SDHCI_ARGUMENT2); }