-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 24170 b: refs/heads/master c: b1bb952 h: refs/heads/master v: v3
- Loading branch information
Akinobu Mita
authored and
Linus Torvalds
committed
Mar 26, 2006
1 parent
22fbda8
commit 68720b3
Showing
3 changed files
with
33 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 765f34fe324bdf0c0544b3404d25aaa511e3834b | ||
refs/heads/master: b1bb9522daf2fb49c5793d128023e9ca1e08e13b |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
#ifndef _ASM_GENERIC_BITOPS_MINIX_LE_H_ | ||
#define _ASM_GENERIC_BITOPS_MINIX_LE_H_ | ||
|
||
#include <asm-generic/bitops/le.h> | ||
|
||
#define minix_test_and_set_bit(nr,addr) \ | ||
generic___test_and_set_le_bit((nr),(unsigned long *)(addr)) | ||
#define minix_set_bit(nr,addr) \ | ||
generic___set_le_bit((nr),(unsigned long *)(addr)) | ||
#define minix_test_and_clear_bit(nr,addr) \ | ||
generic___test_and_clear_le_bit((nr),(unsigned long *)(addr)) | ||
#define minix_test_bit(nr,addr) \ | ||
generic_test_le_bit((nr),(unsigned long *)(addr)) | ||
#define minix_find_first_zero_bit(addr,size) \ | ||
generic_find_first_zero_le_bit((unsigned long *)(addr),(size)) | ||
|
||
#endif /* _ASM_GENERIC_BITOPS_MINIX_LE_H_ */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#ifndef _ASM_GENERIC_BITOPS_MINIX_H_ | ||
#define _ASM_GENERIC_BITOPS_MINIX_H_ | ||
|
||
#define minix_test_and_set_bit(nr,addr) \ | ||
__test_and_set_bit((nr),(unsigned long *)(addr)) | ||
#define minix_set_bit(nr,addr) \ | ||
__set_bit((nr),(unsigned long *)(addr)) | ||
#define minix_test_and_clear_bit(nr,addr) \ | ||
__test_and_clear_bit((nr),(unsigned long *)(addr)) | ||
#define minix_test_bit(nr,addr) \ | ||
test_bit((nr),(unsigned long *)(addr)) | ||
#define minix_find_first_zero_bit(addr,size) \ | ||
find_first_zero_bit((unsigned long *)(addr),(size)) | ||
|
||
#endif /* _ASM_GENERIC_BITOPS_MINIX_H_ */ |