Commit 820b2d85 authored by Ralf Baechle's avatar Ralf Baechle

[MIPS] Alchemy: replace last remaining instance of au_ffs with ffs.

Signed-off-by: default avatarRalf Baechle <ralf@linux-mips.org>
parent c30db248
......@@ -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);
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment