From 227a20fe31c6a03795a202f95af95fb371951963 Mon Sep 17 00:00:00 2001 From: Sascha Hauer Date: Wed, 16 Jul 2014 09:40:30 +0200 Subject: consistently use the same bitops.h file We have many variants of the same bitops.h file. Consistently use the same file for all architectures which completely use the generic bitops versions. Some architectures had static inline versions of functions identically to the generic versions, these are removed and the generic versions are used directly now. Also several architectures depend on the generic find_*_bit functions but didn't have the GENERIC_FIND_NEXT_BIT Kconfig option selected. This is added where needed. Signed-off-by: Sascha Hauer --- arch/x86/include/asm/bitops.h | 30 +++++++++++++++++------------- 1 file changed, 17 insertions(+), 13 deletions(-) (limited to 'arch/x86') diff --git a/arch/x86/include/asm/bitops.h b/arch/x86/include/asm/bitops.h index e525812c97..e77ab83202 100644 --- a/arch/x86/include/asm/bitops.h +++ b/arch/x86/include/asm/bitops.h @@ -12,20 +12,24 @@ * */ -/** - * @file - * @brief x86 bit operations - * - * This file is required only to make all sources happy including - * 'linux/bitops.h' - */ +#ifndef _ASM_BITOPS_H_ +#define _ASM_BITOPS_H_ -#ifndef _ASM_X86_BITOPS_H_ -#define _ASM_X86_BITOPS_H_ - -#include #include -#include +#include #include +#include +#include +#include +#include +#include +#include + +#define set_bit(x, y) __set_bit(x, y) +#define clear_bit(x, y) __clear_bit(x, y) +#define change_bit(x, y) __change_bit(x, y) +#define test_and_set_bit(x, y) __test_and_set_bit(x, y) +#define test_and_clear_bit(x, y) __test_and_clear_bit(x, y) +#define test_and_change_bit(x, y) __test_and_change_bit(x, y) -#endif /* _ASM_X86_BITOPS_H_ */ +#endif /* _ASM_BITOPS_H_ */ -- cgit v1.2.3