blob: 33757f7fe0f875531999622405ce9878f296a255 [file] [log] [blame]
Nicholas Flintham1e3d3112013-04-10 10:48:38 +01001#ifndef _ASM_GENERIC_BITOPS_EXT2_ATOMIC_SETBIT_H_
2#define _ASM_GENERIC_BITOPS_EXT2_ATOMIC_SETBIT_H_
3
4
5#define ext2_set_bit_atomic(l, nr, addr) test_and_set_bit_le(nr, addr)
6#define ext2_clear_bit_atomic(l, nr, addr) test_and_clear_bit_le(nr, addr)
7
8#endif