[POWERPC] Use asm-generic/bitops/find.h in bitops.h
Powerpc and ppc have some code in their bitops.h that is exactly the same as asm-generic/bitops/find.h. Include this header instead of the private implementation. Signed-off-by: Alexander van Heukelum <heukelum@fastmail.fm> Signed-off-by: Paul Mackerras <paulus@samba.org>
This commit is contained in:
Родитель
11a55f2274
Коммит
47b9d9bddf
|
@ -313,23 +313,8 @@ static __inline__ int fls(unsigned int x)
|
||||||
return 32 - lz;
|
return 32 - lz;
|
||||||
}
|
}
|
||||||
#include <asm-generic/bitops/fls64.h>
|
#include <asm-generic/bitops/fls64.h>
|
||||||
|
|
||||||
#include <asm-generic/bitops/hweight.h>
|
#include <asm-generic/bitops/hweight.h>
|
||||||
|
#include <asm-generic/bitops/find.h>
|
||||||
#define find_first_zero_bit(addr, size) find_next_zero_bit((addr), (size), 0)
|
|
||||||
unsigned long find_next_zero_bit(const unsigned long *addr,
|
|
||||||
unsigned long size, unsigned long offset);
|
|
||||||
/**
|
|
||||||
* find_first_bit - find the first set bit in a memory region
|
|
||||||
* @addr: The address to start the search at
|
|
||||||
* @size: The maximum size to search
|
|
||||||
*
|
|
||||||
* Returns the bit-number of the first set bit, not the number of the byte
|
|
||||||
* containing a bit.
|
|
||||||
*/
|
|
||||||
#define find_first_bit(addr, size) find_next_bit((addr), (size), 0)
|
|
||||||
unsigned long find_next_bit(const unsigned long *addr,
|
|
||||||
unsigned long size, unsigned long offset);
|
|
||||||
|
|
||||||
/* Little-endian versions */
|
/* Little-endian versions */
|
||||||
|
|
||||||
|
|
Загрузка…
Ссылка в новой задаче