]> git.baikalelectronics.ru Git - kernel.git/commit
ppc-6xx: fix build failure in flipper-pic.c and hlwd-pic.c
authorPaul Gortmaker <paul.gortmaker@windriver.com>
Wed, 22 Feb 2012 23:35:03 +0000 (18:35 -0500)
committerGrant Likely <grant.likely@secretlab.ca>
Thu, 23 Feb 2012 01:41:19 +0000 (18:41 -0700)
commite2ab51e5200a9c24727f82696ce43380d249b1a3
treed3b5ebace827366ca46b82cf9930f656329b25ab
parent79560d02da1fe70ca76bb5b6f41a53603a4726d1
ppc-6xx: fix build failure in flipper-pic.c and hlwd-pic.c

The commit d4fb10ffb571719d3a645a322685428d0d56dfaf (linux-next)

  "irq_domain/powerpc: Use common irq_domain structure instead of irq_host"

made this change:

   -static struct irq_host *flipper_irq_host;
   +static struct irq_domain *flipper_irq_host;

and this change:

   -static struct irq_host *hlwd_irq_host;
   +static struct irq_domain *hlwd_irq_host;

The intent was to change the type, and not the name, but then in a
couple of instances, it looks like the sed to change the irq_domain_ops
name inadvertently also changed the irq_host name where it was not
supposed to, causing build failures.

Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
arch/powerpc/platforms/embedded6xx/flipper-pic.c
arch/powerpc/platforms/embedded6xx/hlwd-pic.c