Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753022Ab2KILqO (ORCPT ); Fri, 9 Nov 2012 06:46:14 -0500 Received: from mail-pa0-f46.google.com ([209.85.220.46]:63389 "EHLO mail-pa0-f46.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752966Ab2KILqI (ORCPT ); Fri, 9 Nov 2012 06:46:08 -0500 From: Tushar Behera To: linux-kernel@vger.kernel.org, linux-mmc@vger.kernel.org Cc: cjb@laptop.org, patches@linaro.org Subject: [PATCH 5/8] mmc: sdhci: fix coding style in sdhci_do_set_ios Date: Fri, 9 Nov 2012 17:09:55 +0530 Message-Id: <1352461198-21941-6-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> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1832 Lines: 52 Signed-off-by: Tushar Behera --- drivers/mmc/host/sdhci.c | 11 ++++++----- 1 files changed, 6 insertions(+), 5 deletions(-) diff --git a/drivers/mmc/host/sdhci.c b/drivers/mmc/host/sdhci.c index 28da461..b947155 100644 --- a/drivers/mmc/host/sdhci.c +++ b/drivers/mmc/host/sdhci.c @@ -1386,9 +1386,9 @@ static void sdhci_do_set_ios(struct sdhci_host *host, struct mmc_ios *ios) * or if it requires special setup code, you should implement that in * platform_8bit_width(). */ - if (host->ops->platform_8bit_width) + if (host->ops->platform_8bit_width) { host->ops->platform_8bit_width(host, ios->bus_width); - else { + } else { ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL); if (ios->bus_width == MMC_BUS_WIDTH_8) { ctrl &= ~SDHCI_CTRL_4BITBUS; @@ -1467,9 +1467,9 @@ static void sdhci_do_set_ios(struct sdhci_host *host, struct mmc_ios *ios) clk &= ~SDHCI_CLOCK_CARD_EN; sdhci_writew(host, clk, SDHCI_CLOCK_CONTROL); - if (host->ops->set_uhs_signaling) + if (host->ops->set_uhs_signaling) { host->ops->set_uhs_signaling(host, ios->timing); - else { + } else { ctrl_2 = sdhci_readw(host, SDHCI_HOST_CONTROL2); /* Select Bus Speed Mode for host */ ctrl_2 &= ~SDHCI_CTRL_UHS_MASK; @@ -1492,8 +1492,9 @@ static void sdhci_do_set_ios(struct sdhci_host *host, struct mmc_ios *ios) clock = host->clock; host->clock = 0; sdhci_set_clock(host, clock); - } else + } else { sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL); + } /* * Some (ENE) controllers go apeshit on some ios operation, -- 1.7.4.1 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/