diff mbox

[4/6] ARM: mach-shmobile: clock-sh7372: modify error code

Message ID w3p7hg94w0i.wl%kuninori.morimoto.gx@renesas.com (mailing list archive)
State Accepted
Commit a57b1a9bdfb61e8d7dc7acc5e2d8bc04c549e668
Delegated to: Paul Mundt
Headers show

Commit Message

Kuninori Morimoto Nov. 19, 2010, 7:23 a.m. UTC
None
diff mbox

Patch

diff --git a/arch/arm/mach-shmobile/clock-sh7372.c b/arch/arm/mach-shmobile/clock-sh7372.c
index 4191e29..41663e0 100644
--- a/arch/arm/mach-shmobile/clock-sh7372.c
+++ b/arch/arm/mach-shmobile/clock-sh7372.c
@@ -454,7 +454,7 @@  static int fsidiv_enable(struct clk *clk)
 
 	value  = __raw_readl(clk->mapping->base) >> 16;
 	if (value < 2)
-		return -ENOENT;
+		return -EIO;
 
 	__raw_writel((value << 16) | 0x3, clk->mapping->base);
 
@@ -468,7 +468,7 @@  static int fsidiv_set_rate(struct clk *clk,
 
 	idx = (clk->parent->rate / rate) & 0xffff;
 	if (idx < 2)
-		return -ENOENT;
+		return -EINVAL;
 
 	__raw_writel(idx << 16, clk->mapping->base);
 	return 0;