Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

powerpc/82xx: fix checkpatch warnings for km82xx.c

Signed-off-by: Holger Brunck <holger.brunck@keymile.com>
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>

authored by

Holger Brunck and committed by
Kumar Gala
3c00433b 14bdc913

+3 -3
+3 -3
arch/powerpc/platforms/82xx/km82xx.c
··· 18 18 #include <linux/fsl_devices.h> 19 19 #include <linux/of_platform.h> 20 20 21 - #include <asm/io.h> 21 + #include <linux/io.h> 22 22 #include <asm/cpm2.h> 23 23 #include <asm/udbg.h> 24 24 #include <asm/machdep.h> 25 - #include <asm/time.h> 25 + #include <linux/time.h> 26 26 #include <asm/mpc8260.h> 27 27 #include <asm/prom.h> 28 28 ··· 36 36 struct device_node *np = of_find_compatible_node(NULL, NULL, 37 37 "fsl,pq2-pic"); 38 38 if (!np) { 39 - printk(KERN_ERR "PIC init: can not find cpm-pic node\n"); 39 + pr_err("PIC init: can not find cpm-pic node\n"); 40 40 return; 41 41 } 42 42