diff options
Diffstat (limited to 'include/asm-sparc/bitops.h')
-rw-r--r-- | include/asm-sparc/bitops.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/asm-sparc/bitops.h b/include/asm-sparc/bitops.h index 41722b5e45ef..f25109d62032 100644 --- a/include/asm-sparc/bitops.h +++ b/include/asm-sparc/bitops.h | |||
@@ -523,11 +523,11 @@ found_middle: | |||
523 | 523 | ||
524 | /* Bitmap functions for the minix filesystem. */ | 524 | /* Bitmap functions for the minix filesystem. */ |
525 | #define minix_test_and_set_bit(nr,addr) \ | 525 | #define minix_test_and_set_bit(nr,addr) \ |
526 | test_and_set_bit((nr),(unsigned long *)(addr)) | 526 | __test_and_set_bit((nr),(unsigned long *)(addr)) |
527 | #define minix_set_bit(nr,addr) \ | 527 | #define minix_set_bit(nr,addr) \ |
528 | set_bit((nr),(unsigned long *)(addr)) | 528 | __set_bit((nr),(unsigned long *)(addr)) |
529 | #define minix_test_and_clear_bit(nr,addr) \ | 529 | #define minix_test_and_clear_bit(nr,addr) \ |
530 | test_and_clear_bit((nr),(unsigned long *)(addr)) | 530 | __test_and_clear_bit((nr),(unsigned long *)(addr)) |
531 | #define minix_test_bit(nr,addr) \ | 531 | #define minix_test_bit(nr,addr) \ |
532 | test_bit((nr),(unsigned long *)(addr)) | 532 | test_bit((nr),(unsigned long *)(addr)) |
533 | #define minix_find_first_zero_bit(addr,size) \ | 533 | #define minix_find_first_zero_bit(addr,size) \ |