Fix init/main.c to use regular printk with '%pF' for initcall fn

.. small detail, but the silly e1000e initcall warning debugging caused
me to look at this code. Rather than gouge my eyes out with a spoon, I
just fixed it.

Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

+4 -5
+4 -5
init/main.c
··· 708 int result; 709 710 if (initcall_debug) { 711 - print_fn_descriptor_symbol("calling %s\n", fn); 712 t0 = ktime_get(); 713 } 714 ··· 718 t1 = ktime_get(); 719 delta = ktime_sub(t1, t0); 720 721 - print_fn_descriptor_symbol("initcall %s", fn); 722 - printk(" returned %d after %Ld msecs\n", result, 723 (unsigned long long) delta.tv64 >> 20); 724 } 725 ··· 737 local_irq_enable(); 738 } 739 if (msgbuf[0]) { 740 - print_fn_descriptor_symbol(KERN_WARNING "initcall %s", fn); 741 - printk(" returned with %s\n", msgbuf); 742 } 743 744 return result;
··· 708 int result; 709 710 if (initcall_debug) { 711 + printk("calling %pF\n", fn); 712 t0 = ktime_get(); 713 } 714 ··· 718 t1 = ktime_get(); 719 delta = ktime_sub(t1, t0); 720 721 + printk("initcall %pF returned %d after %Ld msecs\n", 722 + fn, result, 723 (unsigned long long) delta.tv64 >> 20); 724 } 725 ··· 737 local_irq_enable(); 738 } 739 if (msgbuf[0]) { 740 + printk("initcall %pF returned with %s\n", fn, msgbuf); 741 } 742 743 return result;