License cleanup: add SPDX GPL-2.0 license identifier to files with no license
[linux-2.6/btrfs-unstable.git] / include / asm-generic / bitops / ext2-atomic-setbit.h
blobb041cbf0d899c638e81d4628c46ccc9932dd5f9e
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _ASM_GENERIC_BITOPS_EXT2_ATOMIC_SETBIT_H_
3 #define _ASM_GENERIC_BITOPS_EXT2_ATOMIC_SETBIT_H_
5 /*
6 * Atomic bitops based version of ext2 atomic bitops
7 */
9 #define ext2_set_bit_atomic(l, nr, addr) test_and_set_bit_le(nr, addr)
10 #define ext2_clear_bit_atomic(l, nr, addr) test_and_clear_bit_le(nr, addr)
12 #endif /* _ASM_GENERIC_BITOPS_EXT2_ATOMIC_SETBIT_H_ */