Commit c88b2b66 authored by Emil Medve's avatar Emil Medve Committed by Michael Turquette

clk: qoriq: Use pr_fmt()

Currently a mix of clk-qoriq/qoriq-clk and no prefix is used
Signed-off-by: default avatarEmil Medve <Emilian.Medve@Freescale.com>
Signed-off-by: default avatarMichael Turquette <mturquette@linaro.org>
parent 6ef1ccac
...@@ -7,6 +7,9 @@ ...@@ -7,6 +7,9 @@
* *
* clock driver for Freescale QorIQ SoCs. * clock driver for Freescale QorIQ SoCs.
*/ */
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
#include <linux/clk-provider.h> #include <linux/clk-provider.h>
#include <linux/io.h> #include <linux/io.h>
#include <linux/kernel.h> #include <linux/kernel.h>
...@@ -163,7 +166,7 @@ static void __init core_pll_init(struct device_node *np) ...@@ -163,7 +166,7 @@ static void __init core_pll_init(struct device_node *np)
base = of_iomap(np, 0); base = of_iomap(np, 0);
if (!base) { if (!base) {
pr_err("clk-qoriq: iomap error\n"); pr_err("iomap error\n");
return; return;
} }
...@@ -253,7 +256,7 @@ static void __init sysclk_init(struct device_node *node) ...@@ -253,7 +256,7 @@ static void __init sysclk_init(struct device_node *node)
u32 rate; u32 rate;
if (!np) { if (!np) {
pr_err("qoriq-clk: could not get parent node\n"); pr_err("could not get parent node\n");
return; return;
} }
......
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