Skip to content

Commit

Permalink
powerpc: Add printk levels to powernv platform code
Browse files Browse the repository at this point in the history
Add printk levels to powernv platform code, and convert to
pr_err() etc while here.

Signed-off-by: Anton Blanchard <anton@samba.org>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
  • Loading branch information
Anton Blanchard authored and Michael Ellerman committed Oct 2, 2014
1 parent 3e47d14 commit 9a4f5cd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion arch/powerpc/platforms/powernv/opal-nvram.c
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ void __init opal_nvram_init(void)
}
nvram_size = be32_to_cpup(nbytes_p);

printk(KERN_INFO "OPAL nvram setup, %u bytes\n", nvram_size);
pr_info("OPAL nvram setup, %u bytes\n", nvram_size);
of_node_put(np);

ppc_md.nvram_read = opal_nvram_read;
Expand Down
6 changes: 3 additions & 3 deletions arch/powerpc/platforms/powernv/opal.c
Original file line number Diff line number Diff line change
Expand Up @@ -105,12 +105,12 @@ int __init early_init_dt_scan_opal(unsigned long node,
if (of_flat_dt_is_compatible(node, "ibm,opal-v3")) {
powerpc_firmware_features |= FW_FEATURE_OPALv2;
powerpc_firmware_features |= FW_FEATURE_OPALv3;
printk("OPAL V3 detected !\n");
pr_info("OPAL V3 detected !\n");
} else if (of_flat_dt_is_compatible(node, "ibm,opal-v2")) {
powerpc_firmware_features |= FW_FEATURE_OPALv2;
printk("OPAL V2 detected !\n");
pr_info("OPAL V2 detected !\n");
} else {
printk("OPAL V1 detected !\n");
pr_info("OPAL V1 detected !\n");
}

/* Reinit all cores with the right endian */
Expand Down

0 comments on commit 9a4f5cd

Please sign in to comment.