remove the clz function, use fls instead
authorGabor Juhos <juhosg@openwrt.org>
Sun, 20 Apr 2008 09:10:50 +0000 (09:10 +0000)
committerGabor Juhos <juhosg@openwrt.org>
Sun, 20 Apr 2008 09:10:50 +0000 (09:10 +0000)
SVN-Revision: 10878

target/linux/atheros/files/arch/mips/atheros/ar5315/irq.c
target/linux/atheros/files/include/asm-mips/mach-atheros/ar531x.h

index ed784ba88a34a790bd6539083e5f8f629155a101..69cb362a00dde281b8e98dc4c6b9b617ad10b2f1 100644 (file)
@@ -20,6 +20,7 @@
 #include <linux/kernel.h>
 #include <linux/reboot.h>
 #include <linux/interrupt.h>
+#include <linux/bitops.h>
 #include <asm/bootinfo.h>
 #include <asm/irq_cpu.h>
 #include <asm/io.h>
@@ -39,7 +40,7 @@ static inline void ar5315_gpio_irq(void)
        if (!pend)
                return;
 
-       do_IRQ(AR531X_GPIO_IRQ_BASE + 31 - clz(pend));
+       do_IRQ(AR531X_GPIO_IRQ_BASE + fls(pend) - 1);
 }
 
 
index dccf54155079c9c8ea1287d38a155e95467a6ef6..ba52a2b3269015a408d2d042782bcab1c335d2a0 100644 (file)
 extern void (*board_time_init)(void);
 #endif
 
-/*
- * C access to CLZ instruction
- * (count leading zeroes).
- */
-static inline int clz(unsigned long val)
-{
-       int ret;
-
-       __asm__ volatile (
-               ".set\tnoreorder\n\t"
-               ".set\tnoat\n\t"
-               ".set\tmips32\n\t"
-               "clz\t%0,%1\n\t"
-               ".set\tmips0\n\t"
-               ".set\tat\n\t"
-               ".set\treorder"
-               : "=r" (ret)
-               : "r" (val)
-       );
-
-       return ret;
-}
-
 /*
  * Atheros CPUs before the AR2315 are using MIPS 4Kc core, later designs are
  * using MIPS 4KEc R2 core. This makes it easy to determine the board at runtime.