]> asedeno.scripts.mit.edu Git - linux.git/blobdiff - kernel/async.c
Merge branch 'x86/grand-schemozzle' of git://git.kernel.org/pub/scm/linux/kernel...
[linux.git] / kernel / async.c
index f6bd0d9885e126ca03edc6a28d898ed86f652ed6..4f9c1d6140168cd90b90568a225cb3f11856ad6c 100644 (file)
@@ -1,13 +1,9 @@
+// SPDX-License-Identifier: GPL-2.0-only
 /*
  * async.c: Asynchronous function calls for boot performance
  *
  * (C) Copyright 2009 Intel Corporation
  * Author: Arjan van de Ven <arjan@linux.intel.com>
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; version 2
- * of the License.
  */
 
 
@@ -119,7 +115,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 +124,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);