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

2015-05-01 Thread Stephen Boyd
On 04/28, Krzysztof Kozlowski wrote:
 Fix the indentation - spaces used instead of tabs and actually wrong
 number of spaces.
 
 Signed-off-by: Krzysztof Kozlowski k.kozlow...@samsung.com
 ---
  drivers/clk/tegra/clk-emc.c | 16 
  1 file changed, 8 insertions(+), 8 deletions(-)

What branch is this against? I don't see this in linux-next or
clk-next.

-- 
Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum,
a Linux Foundation Collaborative Project
--
To unsubscribe from this list: send the line unsubscribe linux-samsung-soc in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


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

2015-04-27 Thread Krzysztof Kozlowski
Fix the indentation - spaces used instead of tabs and actually wrong
number of spaces.

Signed-off-by: Krzysztof Kozlowski k.kozlow...@samsung.com
---
 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-samsung-soc in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html