[PATCH v2 3/8] clk: tegra: Fix inconsistent indenting

From: Krzysztof Kozlowski
Date: Tue Apr 28 2015 - 00:47:09 EST


Fix the indentation - spaces used instead of tabs and actually wrong
number of spaces.

Signed-off-by: Krzysztof Kozlowski <k.kozlowski@xxxxxxxxxxx>
---
drivers/clk/tegra/clk-emc.c | 16 ++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/drivers/clk/tegra/clk-emc.c b/drivers/clk/tegra/clk-emc.c
index 615da43a508d..8757feda4a11 100644
--- a/drivers/clk/tegra/clk-emc.c
+++ b/drivers/clk/tegra/clk-emc.c
@@ -130,11 +130,11 @@ static long emc_determine_rate(struct clk_hw *hw, unsigned long rate,

tegra = container_of(hw, struct tegra_clk_emc, hw);

- for (i = 0; i < tegra->num_timings; i++) {
- if (tegra->timings[i].ram_code != ram_code)
- continue;
+ for (i = 0; i < tegra->num_timings; i++) {
+ if (tegra->timings[i].ram_code != ram_code)
+ continue;

- timing = tegra->timings + i;
+ timing = tegra->timings + i;

if (timing->rate > max_rate) {
i = min(i, 1);
@@ -145,11 +145,11 @@ static long emc_determine_rate(struct clk_hw *hw, unsigned long rate,
continue;

if (timing->rate >= rate)
- return timing->rate;
- }
+ return timing->rate;
+ }

- if (timing)
- return timing->rate;
+ if (timing)
+ return timing->rate;

return __clk_get_rate(hw->clk);
}
--
1.9.1

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/