aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/clk/clk-asm9260.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/clk/clk-asm9260.c')
-rw-r--r--drivers/clk/clk-asm9260.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/clk/clk-asm9260.c b/drivers/clk/clk-asm9260.c
index 44b544157121..d571a00b5282 100644
--- a/drivers/clk/clk-asm9260.c
+++ b/drivers/clk/clk-asm9260.c
@@ -281,7 +281,7 @@ static void __init asm9260_acc_init(struct device_node *np)
281 281
282 base = of_io_request_and_map(np, 0, np->name); 282 base = of_io_request_and_map(np, 0, np->name);
283 if (IS_ERR(base)) 283 if (IS_ERR(base))
284 panic("%s: unable to map resource", np->name); 284 panic("%pOFn: unable to map resource", np);
285 285
286 /* register pll */ 286 /* register pll */
287 rate = (ioread32(base + HW_SYSPLLCTRL) & 0xffff) * 1000000; 287 rate = (ioread32(base + HW_SYSPLLCTRL) & 0xffff) * 1000000;
@@ -292,7 +292,7 @@ static void __init asm9260_acc_init(struct device_node *np)
292 ref_clk, 0, rate, accuracy); 292 ref_clk, 0, rate, accuracy);
293 293
294 if (IS_ERR(hw)) 294 if (IS_ERR(hw))
295 panic("%s: can't register REFCLK. Check DT!", np->name); 295 panic("%pOFn: can't register REFCLK. Check DT!", np);
296 296
297 for (n = 0; n < ARRAY_SIZE(asm9260_mux_clks); n++) { 297 for (n = 0; n < ARRAY_SIZE(asm9260_mux_clks); n++) {
298 const struct asm9260_mux_clock *mc = &asm9260_mux_clks[n]; 298 const struct asm9260_mux_clock *mc = &asm9260_mux_clks[n];