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_mips.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_mips.c')
-rw-r--r-- | drivers/bcma/driver_mips.c | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/drivers/bcma/driver_mips.c b/drivers/bcma/driver_mips.c index 90f20a247725..a808404db4b1 100644 --- a/drivers/bcma/driver_mips.c +++ b/drivers/bcma/driver_mips.c | |||
@@ -85,7 +85,7 @@ static u32 bcma_core_mips_irqflag(struct bcma_device *dev) | |||
85 | * If disabled, 5 is returned. | 85 | * If disabled, 5 is returned. |
86 | * If not supported, 6 is returned. | 86 | * If not supported, 6 is returned. |
87 | */ | 87 | */ |
88 | unsigned int bcma_core_mips_irq(struct bcma_device *dev) | 88 | static unsigned int bcma_core_mips_irq(struct bcma_device *dev) |
89 | { | 89 | { |
90 | struct bcma_device *mdev = dev->bus->drv_mips.core; | 90 | struct bcma_device *mdev = dev->bus->drv_mips.core; |
91 | u32 irqflag; | 91 | u32 irqflag; |
@@ -102,7 +102,13 @@ unsigned int bcma_core_mips_irq(struct bcma_device *dev) | |||
102 | 102 | ||
103 | return 5; | 103 | return 5; |
104 | } | 104 | } |
105 | EXPORT_SYMBOL(bcma_core_mips_irq); | 105 | |
106 | unsigned int bcma_core_irq(struct bcma_device *dev) | ||
107 | { | ||
108 | unsigned int mips_irq = bcma_core_mips_irq(dev); | ||
109 | return mips_irq <= 4 ? mips_irq + 2 : 0; | ||
110 | } | ||
111 | EXPORT_SYMBOL(bcma_core_irq); | ||
106 | 112 | ||
107 | static void bcma_core_mips_set_irq(struct bcma_device *dev, unsigned int irq) | 113 | static void bcma_core_mips_set_irq(struct bcma_device *dev, unsigned int irq) |
108 | { | 114 | { |
@@ -299,7 +305,7 @@ void bcma_core_mips_init(struct bcma_drv_mips *mcore) | |||
299 | break; | 305 | break; |
300 | default: | 306 | default: |
301 | list_for_each_entry(core, &bus->cores, list) { | 307 | list_for_each_entry(core, &bus->cores, list) { |
302 | core->irq = bcma_core_mips_irq(core) + 2; | 308 | core->irq = bcma_core_irq(core); |
303 | } | 309 | } |
304 | bcma_err(bus, | 310 | bcma_err(bus, |
305 | "Unknown device (0x%x) found, can not configure IRQs\n", | 311 | "Unknown device (0x%x) found, can not configure IRQs\n", |