Commit-ID:  b7c8b4aac6ea6746b1c49fda0a0563a07203dd26
Gitweb:     http://git.kernel.org/tip/b7c8b4aac6ea6746b1c49fda0a0563a07203dd26
Author:     Vladimir Zapolskiy <[email protected]>
AuthorDate: Tue, 22 Mar 2016 01:42:07 +0200
Committer:  Thomas Gleixner <[email protected]>
CommitDate: Wed, 23 Mar 2016 12:30:40 +0100

clocksource/drivers/pistachio: Correct output format of PTR_ERR()

Use signed integer output in the pr_err() string format, here PTR_ERR() value
is negative and it should be reported in human readable way.

Signed-off-by: Vladimir Zapolskiy <[email protected]>
Cc: Jisheng Zhang <[email protected]>
Cc: Ezequiel Garcia <[email protected]>
Cc: Daniel Lezcano <[email protected]>
Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: Thomas Gleixner <[email protected]>

---
 drivers/clocksource/time-pistachio.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/clocksource/time-pistachio.c 
b/drivers/clocksource/time-pistachio.c
index 3269d9e..376e59b 100644
--- a/drivers/clocksource/time-pistachio.c
+++ b/drivers/clocksource/time-pistachio.c
@@ -163,7 +163,7 @@ static void __init pistachio_clksrc_of_init(struct 
device_node *node)
 
        periph_regs = syscon_regmap_lookup_by_phandle(node, "img,cr-periph");
        if (IS_ERR(periph_regs)) {
-               pr_err("cannot get peripheral regmap (%lu)\n",
+               pr_err("cannot get peripheral regmap (%ld)\n",
                       PTR_ERR(periph_regs));
                return;
        }
@@ -176,7 +176,7 @@ static void __init pistachio_clksrc_of_init(struct 
device_node *node)
 
        sys_clk = of_clk_get_by_name(node, "sys");
        if (IS_ERR(sys_clk)) {
-               pr_err("clock get failed (%lu)\n", PTR_ERR(sys_clk));
+               pr_err("clock get failed (%ld)\n", PTR_ERR(sys_clk));
                return;
        }
 

Reply via email to