Skip to content

Commit 5354033

Browse files
Rahul TanwarKAGA-KOKO
authored andcommitted
x86/of: Replace printk(KERN_LVL) with pr_lvl()
Use pr_lvl() instead of the deprecated printk(KERN_LVL). Just a upgrade of print utilities usage. no functional changes. Suggested-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Signed-off-by: Rahul Tanwar <rtanwar@maxlinear.com> Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Link: https://lore.kernel.org/r/20221124084143.21841-4-rtanwar@maxlinear.com
1 parent b3a9801 commit 5354033

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

arch/x86/kernel/devicetree.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ static void __init dtb_add_ioapic(struct device_node *dn)
243243

244244
ret = of_address_to_resource(dn, 0, &r);
245245
if (ret) {
246-
printk(KERN_ERR "Can't obtain address from device node %pOF.\n", dn);
246+
pr_err("Can't obtain address from device node %pOF.\n", dn);
247247
return;
248248
}
249249
mp_register_ioapic(++ioapic_id, r.start, gsi_top, &cfg);
@@ -260,7 +260,7 @@ static void __init dtb_ioapic_setup(void)
260260
of_ioapic = 1;
261261
return;
262262
}
263-
printk(KERN_ERR "Error: No information about IO-APIC in OF.\n");
263+
pr_err("Error: No information about IO-APIC in OF.\n");
264264
}
265265
#else
266266
static void __init dtb_ioapic_setup(void) {}

0 commit comments

Comments
 (0)