Commit ed31b2df authored by Russell King's avatar Russell King Committed by Russell King

[ARM] make U300 clk_set_rate() return a _real_ errno

Another stupid instance of "return -1"-ism.
Signed-off-by: default avatarRussell King <rmk+kernel@arm.linux.org.uk>
parent f7a9a4d7
......@@ -682,7 +682,7 @@ int clk_set_rate(struct clk *clk, unsigned long rate)
} else {
printk(KERN_ERR "clock: Failed to set %s to %ld hz\n",
clk->name, rate);
return -1;
return -EINVAL;
}
}
EXPORT_SYMBOL(clk_set_rate);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment