projects
/
GitHub
/
moto-9609
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c30db24
)
[MIPS] Alchemy: replace last remaining instance of au_ffs with ffs.
author
Ralf Baechle
<ralf@linux-mips.org>
Wed, 17 Oct 2007 14:37:44 +0000
(15:37 +0100)
committer
Ralf Baechle
<ralf@linux-mips.org>
Wed, 17 Oct 2007 17:28:48 +0000
(18:28 +0100)
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
arch/mips/au1000/pb1200/irqmap.c
patch
|
blob
|
blame
|
history
diff --git
a/arch/mips/au1000/pb1200/irqmap.c
b/arch/mips/au1000/pb1200/irqmap.c
index 3bee274445f50eea835f35e4b03878e40a43ffd8..5f48b0603796bc077fb18fed96e33a1b1343ccbe 100644
(file)
--- a/
arch/mips/au1000/pb1200/irqmap.c
+++ b/
arch/mips/au1000/pb1200/irqmap.c
@@
-74,7
+74,7
@@
irqreturn_t pb1200_cascade_handler( int irq, void *dev_id)
bcsr->int_status = bisr;
for( ; bisr; bisr &= (bisr-1) )
{
- extirq_nr = PB1200_INT_BEGIN +
au_
ffs(bisr);
+ extirq_nr = PB1200_INT_BEGIN + ffs(bisr);
/* Ack and dispatch IRQ */
do_IRQ(extirq_nr);
}