Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

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

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

parent c30db248
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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);
	}