diff options
Diffstat (limited to 'include/asm-sparc64/bitops.h')
-rw-r--r-- | include/asm-sparc64/bitops.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/asm-sparc64/bitops.h b/include/asm-sparc64/bitops.h index 6efc0162fb09..2361f8736498 100644 --- a/include/asm-sparc64/bitops.h +++ b/include/asm-sparc64/bitops.h | |||
@@ -280,11 +280,11 @@ extern unsigned long find_next_zero_le_bit(unsigned long *, unsigned long, unsig | |||
280 | 280 | ||
281 | /* Bitmap functions for the minix filesystem. */ | 281 | /* Bitmap functions for the minix filesystem. */ |
282 | #define minix_test_and_set_bit(nr,addr) \ | 282 | #define minix_test_and_set_bit(nr,addr) \ |
283 | test_and_set_bit((nr),(unsigned long *)(addr)) | 283 | __test_and_set_bit((nr),(unsigned long *)(addr)) |
284 | #define minix_set_bit(nr,addr) \ | 284 | #define minix_set_bit(nr,addr) \ |
285 | set_bit((nr),(unsigned long *)(addr)) | 285 | __set_bit((nr),(unsigned long *)(addr)) |
286 | #define minix_test_and_clear_bit(nr,addr) \ | 286 | #define minix_test_and_clear_bit(nr,addr) \ |
287 | test_and_clear_bit((nr),(unsigned long *)(addr)) | 287 | __test_and_clear_bit((nr),(unsigned long *)(addr)) |
288 | #define minix_test_bit(nr,addr) \ | 288 | #define minix_test_bit(nr,addr) \ |
289 | test_bit((nr),(unsigned long *)(addr)) | 289 | test_bit((nr),(unsigned long *)(addr)) |
290 | #define minix_find_first_zero_bit(addr,size) \ | 290 | #define minix_find_first_zero_bit(addr,size) \ |