diff options
author | Nathan Hintz <nlhintz@hotmail.com> | 2013-01-10 11:54:09 -0500 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2013-01-11 14:49:59 -0500 |
commit | e2aa19fadd718d7dd920a3994118863861a4b61e (patch) | |
tree | dcef21d36c4ed2ab7cb02ecf9ca7585ebc3993ed /drivers/bcma/driver_chipcommon.c | |
parent | 1a2d50329832c4b5c77be569f20eec303a0d07b8 (diff) |
bcma: return the mips irq number in bcma_core_irq
The irq signal numbers that are send by the cpu are increased by 2 from
the number programmed into the mips core by bcma.
Return the irq number on which the irqs are send in bcma_core_irq() now.
Signed-off-by: Nathan Hintz <nlhintz@hotmail.com>
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/bcma/driver_chipcommon.c')
-rw-r--r-- | drivers/bcma/driver_chipcommon.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/bcma/driver_chipcommon.c b/drivers/bcma/driver_chipcommon.c index e461ad25fda4..28fa50ad87be 100644 --- a/drivers/bcma/driver_chipcommon.c +++ b/drivers/bcma/driver_chipcommon.c | |||
@@ -329,7 +329,7 @@ void bcma_chipco_serial_init(struct bcma_drv_cc *cc) | |||
329 | return; | 329 | return; |
330 | } | 330 | } |
331 | 331 | ||
332 | irq = bcma_core_mips_irq(cc->core); | 332 | irq = bcma_core_irq(cc->core); |
333 | 333 | ||
334 | /* Determine the registers of the UARTs */ | 334 | /* Determine the registers of the UARTs */ |
335 | cc->nr_serial_ports = (cc->capabilities & BCMA_CC_CAP_NRUART); | 335 | cc->nr_serial_ports = (cc->capabilities & BCMA_CC_CAP_NRUART); |