projects
/
platform
/
kernel
/
linux-rpi.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a368f77
)
ARM: OMAP: irq: loop counter fix in omap_init_irq()
author
Tapani Utriainen
<tapani@technexion.com>
Fri, 30 Sep 2011 18:05:56 +0000
(11:05 -0700)
committer
Tony Lindgren
<tony@atomide.com>
Mon, 3 Oct 2011 18:46:49 +0000
(11:46 -0700)
Fixes bug where variable i was redundantly used for counting two nested loops.
Signed-off-by: Tapani Utriainen <tapani@technexion.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
arch/arm/mach-omap2/irq.c
patch
|
blob
|
history
diff --git
a/arch/arm/mach-omap2/irq.c
b/arch/arm/mach-omap2/irq.c
index
3a12f75
..
65f1be6
100644
(file)
--- a/
arch/arm/mach-omap2/irq.c
+++ b/
arch/arm/mach-omap2/irq.c
@@
-165,8
+165,8
@@
static void __init omap_init_irq(u32 base, int nr_irqs)
omap_irq_bank_init_one(bank);
- for (
i = 0, j = 0; i < bank->nr_irqs; i += 32, j += 0x20
)
- omap_alloc_gc(bank->base_reg + j,
i
, 32);
+ for (
j = 0; j < bank->nr_irqs; j += 32
)
+ omap_alloc_gc(bank->base_reg + j,
j
, 32);
nr_of_irqs += bank->nr_irqs;
nr_banks++;