Skip to content

Commit

Permalink
powerpc/83xx: fix checkpatch warnings for km83xx.c
Browse files Browse the repository at this point in the history
Signed-off-by: Holger Brunck <holger.brunck@keymile.com>
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
  • Loading branch information
Holger Brunck authored and Kumar Gala committed Feb 13, 2013
1 parent 3c00433 commit 89491d8
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions arch/powerpc/platforms/83xx/km83xx.c
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@
#include <linux/of_device.h>

#include <linux/atomic.h>
#include <asm/time.h>
#include <asm/io.h>
#include <linux/time.h>
#include <linux/io.h>
#include <asm/machdep.h>
#include <asm/ipic.h>
#include <asm/irq.h>
Expand Down Expand Up @@ -88,15 +88,13 @@ static void __init mpc83xx_km_setup_arch(void)

np_par = of_find_node_by_name(NULL, "par_io");
if (np_par == NULL) {
printk(KERN_WARNING "%s couldn;t find par_io node\n",
__func__);
pr_warn("%s couldn;t find par_io node\n", __func__);
return;
}
/* Map Parallel I/O ports registers */
ret = of_address_to_resource(np_par, 0, &res);
if (ret) {
printk(KERN_WARNING "%s couldn;t map par_io registers\n",
__func__);
pr_warn("%s couldn;t map par_io registers\n", __func__);
return;
}

Expand Down

0 comments on commit 89491d8

Please sign in to comment.