From 03164df6fe4b39e09366e096808b3934cfc55693 Mon Sep 17 00:00:00 2001 From: juhosg Date: Sun, 20 Apr 2008 09:10:50 +0000 Subject: [atheros] remove the clz function, use fls instead git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10878 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- .../files/include/asm-mips/mach-atheros/ar531x.h | 23 ---------------------- 1 file changed, 23 deletions(-) (limited to 'target/linux/atheros/files/include/asm-mips/mach-atheros') diff --git a/target/linux/atheros/files/include/asm-mips/mach-atheros/ar531x.h b/target/linux/atheros/files/include/asm-mips/mach-atheros/ar531x.h index dccf54155..ba52a2b32 100644 --- a/target/linux/atheros/files/include/asm-mips/mach-atheros/ar531x.h +++ b/target/linux/atheros/files/include/asm-mips/mach-atheros/ar531x.h @@ -11,29 +11,6 @@ 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. -- cgit v1.2.3