@@ -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,
Signed-off-by: Tushar Behera <tushar.behera@linaro.org> --- drivers/mmc/host/sdhci.c | 11 ++++++----- 1 files changed, 6 insertions(+), 5 deletions(-)