summaryrefslogtreecommitdiff
path: root/include/asm-generic/bitops/builtin-ffs.h
diff options
context:
space:
mode:
authorCatalin Marinas <catalin.marinas@arm.com>2012-09-12 22:00:53 +0100
committerCatalin Marinas <catalin.marinas@arm.com>2012-09-14 17:15:41 +0100
commit048fa2df92c325cb4425dccd66c8922c8342b507 (patch)
treea76ddbd3f05752f27e0867906a34e102cb76b4e4 /include/asm-generic/bitops/builtin-ffs.h
parent0753f70f07fbbd23a48d61ffea37028bd0bd6c7d (diff)
generic: Implement generic ffs/fls using __builtin_* functions
This patch implements ffs, __ffs, fls, __fls using __builtin_* gcc functions. These header files can be used by other architectures that rely on the gcc builtins. Signed-off-by: Catalin Marinas <catalin.marinas@arm.com> Acked-by: Arnd Bergmann <arnd@arndb.de>
Diffstat (limited to 'include/asm-generic/bitops/builtin-ffs.h')
-rw-r--r--include/asm-generic/bitops/builtin-ffs.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/include/asm-generic/bitops/builtin-ffs.h b/include/asm-generic/bitops/builtin-ffs.h
new file mode 100644
index 000000000000..064825829e1c
--- /dev/null
+++ b/include/asm-generic/bitops/builtin-ffs.h
@@ -0,0 +1,17 @@
+#ifndef _ASM_GENERIC_BITOPS_BUILTIN_FFS_H_
+#define _ASM_GENERIC_BITOPS_BUILTIN_FFS_H_
+
+/**
+ * ffs - find first bit set
+ * @x: the word to search
+ *
+ * This is defined the same way as
+ * the libc and compiler builtin ffs routines, therefore
+ * differs in spirit from the above ffz (man ffs).
+ */
+static __always_inline int ffs(int x)
+{
+ return __builtin_ffs(x);
+}
+
+#endif