aboutsummaryrefslogtreecommitdiffstats
path: root/init
diff options
context:
space:
mode:
Diffstat (limited to 'init')
-rw-r--r--init/main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/init/main.c b/init/main.c
index e7939de80f3e..b2e7ff4a5349 100644
--- a/init/main.c
+++ b/init/main.c
@@ -721,8 +721,8 @@ int do_one_initcall(initcall_t fn)
721 if (initcall_debug) { 721 if (initcall_debug) {
722 it.rettime = ktime_get(); 722 it.rettime = ktime_get();
723 delta = ktime_sub(it.rettime, it.calltime); 723 delta = ktime_sub(it.rettime, it.calltime);
724 it.duration = (unsigned long long) delta.tv64 >> 20; 724 it.duration = (unsigned long long) delta.tv64 >> 10;
725 printk("initcall %pF returned %d after %Ld msecs\n", fn, 725 printk("initcall %pF returned %d after %Ld usecs\n", fn,
726 it.result, it.duration); 726 it.result, it.duration);
727 trace_boot(&it, fn); 727 trace_boot(&it, fn);
728 } 728 }