diff options
author | Paul Walmsley <pwalmsley@nvidia.com> | 2013-11-26 19:56:27 -0500 |
---|---|---|
committer | Sekhar Nori <nsekhar@ti.com> | 2013-11-27 04:18:33 -0500 |
commit | 4408c26bc37fa8ada493ad41a6c7659b76fff483 (patch) | |
tree | c91f44493bef8517780f9657ea48627a7fb0f628 | |
parent | 6ce4eac1f600b34f2f7f58f9cd8f0503d79e42ae (diff) |
ARM: davinci: clock: return 0 upon error from clk_round_rate()
clk_round_rate() should return 0 now upon an error, rather than returning
a negative error code. This is because clk_round_rate() is being changed
to return an unsigned return type rather than a signed type, since some
clock sources can generate rates higher than (2^31)-1 Hz.
Signed-off-by: Paul Walmsley <paul@pwsan.com>
Cc: Philip Avinash <avinashphilip@ti.com>
Cc: Sekhar Nori <nsekhar@ti.com>
Cc: Kevin Hilman <khilman@deeprootsystems.com>
Signed-off-by: Sekhar Nori <nsekhar@ti.com>
-rw-r--r-- | arch/arm/mach-davinci/clock.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-davinci/clock.c b/arch/arm/mach-davinci/clock.c index dc9a470ff9c5..985e5fd00fb2 100644 --- a/arch/arm/mach-davinci/clock.c +++ b/arch/arm/mach-davinci/clock.c | |||
@@ -133,7 +133,7 @@ EXPORT_SYMBOL(clk_get_rate); | |||
133 | long clk_round_rate(struct clk *clk, unsigned long rate) | 133 | long clk_round_rate(struct clk *clk, unsigned long rate) |
134 | { | 134 | { |
135 | if (clk == NULL || IS_ERR(clk)) | 135 | if (clk == NULL || IS_ERR(clk)) |
136 | return -EINVAL; | 136 | return 0; |
137 | 137 | ||
138 | if (clk->round_rate) | 138 | if (clk->round_rate) |
139 | return clk->round_rate(clk, rate); | 139 | return clk->round_rate(clk, rate); |