Skip to content

Commit

Permalink
powerpc/mpc8xxx_gpio: Add support for 'qoriq-gpio' controllers
Browse files Browse the repository at this point in the history
Add 'fsl,qoriq-gpio' compatiable to the list we search for to bind
against for mpc8xxx_gpio.  This compatiable will be used on P1-P5xxx
QorIQ devices like P4080.

Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
  • Loading branch information
Kumar Gala committed Oct 14, 2010
1 parent 2ed38b2 commit da3ed89
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions arch/powerpc/sysdev/mpc8xxx_gpio.c
Original file line number Diff line number Diff line change
Expand Up @@ -330,6 +330,9 @@ static int __init mpc8xxx_add_gpiochips(void)
for_each_compatible_node(np, NULL, "fsl,mpc8610-gpio")
mpc8xxx_add_controller(np);

for_each_compatible_node(np, NULL, "fsl,qoriq-gpio")
mpc8xxx_add_controller(np);

return 0;
}
arch_initcall(mpc8xxx_add_gpiochips);

0 comments on commit da3ed89

Please sign in to comment.