Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

memstick: jmb38x_ms: clean up indentation issue

There is a hunk of code that is indented one level too deep, fix
this by removing the extraneous tabs.

Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>

authored by

Colin Ian King and committed by
Ulf Hansson
690dba13 01a56743

+6 -6
+6 -6
drivers/memstick/host/jmb38x_ms.c
··· 433 433 writel(((1 << 16) & BLOCK_COUNT_MASK) 434 434 | (data_len & BLOCK_SIZE_MASK), 435 435 host->addr + BLOCK); 436 - t_val = readl(host->addr + INT_STATUS_ENABLE); 437 - t_val |= host->req->data_dir == READ 438 - ? INT_STATUS_FIFO_RRDY 439 - : INT_STATUS_FIFO_WRDY; 436 + t_val = readl(host->addr + INT_STATUS_ENABLE); 437 + t_val |= host->req->data_dir == READ 438 + ? INT_STATUS_FIFO_RRDY 439 + : INT_STATUS_FIFO_WRDY; 440 440 441 - writel(t_val, host->addr + INT_STATUS_ENABLE); 442 - writel(t_val, host->addr + INT_SIGNAL_ENABLE); 441 + writel(t_val, host->addr + INT_STATUS_ENABLE); 442 + writel(t_val, host->addr + INT_SIGNAL_ENABLE); 443 443 } else { 444 444 cmd &= ~(TPC_DATA_SEL | 0xf); 445 445 host->cmd_flags |= REG_DATA;