]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
ARM: davinci: clock: return 0 upon error from clk_round_rate()
authorPaul Walmsley <pwalmsley@nvidia.com>
Wed, 27 Nov 2013 00:56:27 +0000 (16:56 -0800)
committerSekhar Nori <nsekhar@ti.com>
Wed, 27 Nov 2013 09:18:33 +0000 (14:48 +0530)
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>
arch/arm/mach-davinci/clock.c

index dc9a470ff9c57afe9855bfaf592a27a62b3888a6..985e5fd00fb27d82297c94208a63e911263c6996 100644 (file)
@@ -133,7 +133,7 @@ EXPORT_SYMBOL(clk_get_rate);
 long clk_round_rate(struct clk *clk, unsigned long rate)
 {
        if (clk == NULL || IS_ERR(clk))
-               return -EINVAL;
+               return 0;
 
        if (clk->round_rate)
                return clk->round_rate(clk, rate);