clk: socfpga: remove a stray tab

This line was indented too far.

Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Acked-by: Dinh Nguyen <dinguyen@opensource.altera.com>
Signed-off-by: Michael Turquette <mturquette@linaro.org>
This commit is contained in:
Dan Carpenter 2015-05-27 11:26:27 +03:00 committed by Michael Turquette
parent 80e7264c8f
commit 7eaf8b9f0b

View File

@ -39,7 +39,7 @@ static unsigned long socfpga_gate_clk_recalc_rate(struct clk_hw *hwclk,
else if (socfpgaclk->div_reg) {
val = readl(socfpgaclk->div_reg) >> socfpgaclk->shift;
val &= div_mask(socfpgaclk->width);
div = (1 << val);
div = (1 << val);
}
return parent_rate / div;