forked from luck/tmp_suning_uos_patched
[MIPS] Alchemy: replace last remaining instance of au_ffs with ffs.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
This commit is contained in:
parent
c30db2480e
commit
820b2d853b
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user