diff options
Diffstat (limited to 'arch/arm/include/asm/bitops.h')
-rw-r--r-- | arch/arm/include/asm/bitops.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/arm/include/asm/bitops.h b/arch/arm/include/asm/bitops.h index e943e6cee254..f308c8c40cb9 100644 --- a/arch/arm/include/asm/bitops.h +++ b/arch/arm/include/asm/bitops.h | |||
@@ -159,16 +159,16 @@ extern int _test_and_change_bit(int nr, volatile unsigned long * p); | |||
159 | /* | 159 | /* |
160 | * Little endian assembly bitops. nr = 0 -> byte 0 bit 0. | 160 | * Little endian assembly bitops. nr = 0 -> byte 0 bit 0. |
161 | */ | 161 | */ |
162 | extern int _find_first_zero_bit_le(const void * p, unsigned size); | 162 | extern int _find_first_zero_bit_le(const unsigned long *p, unsigned size); |
163 | extern int _find_next_zero_bit_le(const void * p, int size, int offset); | 163 | extern int _find_next_zero_bit_le(const unsigned long *p, int size, int offset); |
164 | extern int _find_first_bit_le(const unsigned long *p, unsigned size); | 164 | extern int _find_first_bit_le(const unsigned long *p, unsigned size); |
165 | extern int _find_next_bit_le(const unsigned long *p, int size, int offset); | 165 | extern int _find_next_bit_le(const unsigned long *p, int size, int offset); |
166 | 166 | ||
167 | /* | 167 | /* |
168 | * Big endian assembly bitops. nr = 0 -> byte 3 bit 0. | 168 | * Big endian assembly bitops. nr = 0 -> byte 3 bit 0. |
169 | */ | 169 | */ |
170 | extern int _find_first_zero_bit_be(const void * p, unsigned size); | 170 | extern int _find_first_zero_bit_be(const unsigned long *p, unsigned size); |
171 | extern int _find_next_zero_bit_be(const void * p, int size, int offset); | 171 | extern int _find_next_zero_bit_be(const unsigned long *p, int size, int offset); |
172 | extern int _find_first_bit_be(const unsigned long *p, unsigned size); | 172 | extern int _find_first_bit_be(const unsigned long *p, unsigned size); |
173 | extern int _find_next_bit_be(const unsigned long *p, int size, int offset); | 173 | extern int _find_next_bit_be(const unsigned long *p, int size, int offset); |
174 | 174 | ||