treewide: Switch printk users from %pf and %pF to %ps and %pS, respectively
[linux-2.6-microblaze.git] / kernel / async.c
index f6bd0d9..12c332e 100644 (file)
@@ -119,7 +119,7 @@ static void async_run_entry_fn(struct work_struct *work)
 
        /* 1) run (and print duration) */
        if (initcall_debug && system_state < SYSTEM_RUNNING) {
-               pr_debug("calling  %lli_%pF @ %i\n",
+               pr_debug("calling  %lli_%pS @ %i\n",
                        (long long)entry->cookie,
                        entry->func, task_pid_nr(current));
                calltime = ktime_get();
@@ -128,7 +128,7 @@ static void async_run_entry_fn(struct work_struct *work)
        if (initcall_debug && system_state < SYSTEM_RUNNING) {
                rettime = ktime_get();
                delta = ktime_sub(rettime, calltime);
-               pr_debug("initcall %lli_%pF returned 0 after %lld usecs\n",
+               pr_debug("initcall %lli_%pS returned 0 after %lld usecs\n",
                        (long long)entry->cookie,
                        entry->func,
                        (long long)ktime_to_ns(delta) >> 10);