diff options
Diffstat (limited to 'arch/mips/include/asm/bitops.h')
| -rw-r--r-- | arch/mips/include/asm/bitops.h | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/arch/mips/include/asm/bitops.h b/arch/mips/include/asm/bitops.h index 1c8f4c050..f2dc53356 100644 --- a/arch/mips/include/asm/bitops.h +++ b/arch/mips/include/asm/bitops.h @@ -566,7 +566,7 @@ static __inline__ int __test_and_change_bit(int nr, volatile void * addr)   * @nr: bit number to test   * @addr: Address to start counting from   */ -static __inline__ int test_bit(int nr, volatile void *addr) +static __inline__ int test_bit(int nr, const volatile void *addr)  {  	return ((1UL << (nr & 31)) & (((const unsigned int *) addr)[nr >> 5])) != 0;  } |