| 1 | From 960e1ef3c5b2d69a4a5a6984b6408d65221dd86c Mon Sep 17 00:00:00 2001 |
| 2 | From: Kevin Cernekee <cernekee@gmail.com> |
| 3 | Date: Sat, 23 Jun 2012 04:14:55 +0000 |
| 4 | Subject: [PATCH 06/81] MIPS: BCM63XX: Fix USB IRQ definitions for 6328 |
| 5 | |
| 6 | OHCI/EHCI are in the high (second) word. Not currently used by any |
| 7 | driver. |
| 8 | |
| 9 | Signed-off-by: Kevin Cernekee <cernekee@gmail.com> |
| 10 | --- |
| 11 | arch/mips/include/asm/mach-bcm63xx/bcm63xx_cpu.h | 4 ++-- |
| 12 | 1 file changed, 2 insertions(+), 2 deletions(-) |
| 13 | |
| 14 | --- a/arch/mips/include/asm/mach-bcm63xx/bcm63xx_cpu.h |
| 15 | +++ b/arch/mips/include/asm/mach-bcm63xx/bcm63xx_cpu.h |
| 16 | @@ -602,8 +602,8 @@ enum bcm63xx_irq { |
| 17 | #define BCM_6328_ENET0_IRQ 0 |
| 18 | #define BCM_6328_ENET1_IRQ 0 |
| 19 | #define BCM_6328_ENET_PHY_IRQ (IRQ_INTERNAL_BASE + 12) |
| 20 | -#define BCM_6328_OHCI0_IRQ (IRQ_INTERNAL_BASE + 9) |
| 21 | -#define BCM_6328_EHCI0_IRQ (IRQ_INTERNAL_BASE + 10) |
| 22 | +#define BCM_6328_OHCI0_IRQ (BCM_6328_HIGH_IRQ_BASE + 9) |
| 23 | +#define BCM_6328_EHCI0_IRQ (BCM_6328_HIGH_IRQ_BASE + 10) |
| 24 | #define BCM_6328_PCMCIA_IRQ 0 |
| 25 | #define BCM_6328_ENET0_RXDMA_IRQ 0 |
| 26 | #define BCM_6328_ENET0_TXDMA_IRQ 0 |
| 27 | |