summaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authorJean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>2013-03-08 12:59:36 +0100
committerSascha Hauer <s.hauer@pengutronix.de>2013-03-09 11:16:17 +0100
commit50c9df489926ddd6f1fc84f3c58cdf808e5d8825 (patch)
tree9121a2b5c6d7d41c20f0e66e038e6a102f779e74 /common
parentd34aca4c09615870b694820dc21049bd1e77030e (diff)
downloadbarebox-50c9df489926ddd6f1fc84f3c58cdf808e5d8825.tar.gz
barebox-50c9df489926ddd6f1fc84f3c58cdf808e5d8825.tar.xz
startup: switch to pr_xxx
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'common')
-rw-r--r--common/startup.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/startup.c b/common/startup.c
index 52a8996cdf..e49cc4ce3c 100644
--- a/common/startup.c
+++ b/common/startup.c
@@ -105,14 +105,14 @@ void __noreturn start_barebox(void)
for (initcall = __barebox_initcalls_start;
initcall < __barebox_initcalls_end; initcall++) {
- debug("initcall-> %pS\n", *initcall);
+ pr_debug("initcall-> %pS\n", *initcall);
result = (*initcall)();
if (result)
pr_err("initcall %pS failed: %s\n", *initcall,
strerror(-result));
}
- debug("initcalls done\n");
+ pr_debug("initcalls done\n");
if (IS_ENABLED(CONFIG_ENV_HANDLING)) {
int ret;