All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] ARM: SAMSUNG: s3c_set_clksrc returns for single parent clock.
@ 2010-01-18  0:38 Thomas Abraham
  2010-01-18  1:10 ` Ben Dooks
  0 siblings, 1 reply; 5+ messages in thread
From: Thomas Abraham @ 2010-01-18  0:38 UTC (permalink / raw)
  To: linux-samsung-soc; +Cc: ben-linux, Thomas Abraham

The function s3c_set_clksrc should return if the clksrc_clk clock has
only one possible parent clock.

Signed-of-by:  Thomas Abraham <thomas.ab@samsung.com>
---
 arch/arm/plat-samsung/clock-clksrc.c |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/arch/arm/plat-samsung/clock-clksrc.c b/arch/arm/plat-samsung/clock-clksrc.c
index 33c633a..80da4c4 100644
--- a/arch/arm/plat-samsung/clock-clksrc.c
+++ b/arch/arm/plat-samsung/clock-clksrc.c
@@ -131,9 +131,10 @@ void __init_or_cpufreq s3c_set_clksrc(struct clksrc_clk *clk, bool announce)
 	u32 mask = bit_mask(clk->reg_src.shift, clk->reg_src.size);
 	u32 clksrc = 0;
 
-	if (clk->reg_src.reg)
-		clksrc = __raw_readl(clk->reg_src.reg);
+	if (!clk->reg_src.reg)
+		return;
 
+	clksrc = __raw_readl(clk->reg_src.reg);
 	clksrc &= mask;
 	clksrc >>= clk->reg_src.shift;
 
-- 
1.6.3.3

^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2010-01-18  1:59 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-01-18  0:38 [PATCH] ARM: SAMSUNG: s3c_set_clksrc returns for single parent clock Thomas Abraham
2010-01-18  1:10 ` Ben Dooks
2010-01-18  1:34   ` Thomas Abraham
2010-01-18  1:46     ` Ben Dooks
2010-01-18  1:59       ` Ben Dooks

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.