| Submitter | Daniel Schwierzeck |
|---|---|
| Date | Dec. 8, 2012, 8:51 p.m. |
| Message ID | <1354999865-19226-1-git-send-email-daniel.schwierzeck@gmail.com> |
| Download | mbox | patch |
| Permalink | /patch/204676/ |
| State | Accepted |
| Delegated to: | Daniel Schwierzeck |
| Headers | show |
Comments
Patch
diff --git a/arch/mips/include/asm/bitops.h b/arch/mips/include/asm/bitops.h index 1c8f4c0..f2dc533 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; }