kernel: Toggle not toogle; no functional change
This commit is contained in:
@@ -71,7 +71,7 @@
|
|||||||
#define SET_BIT(a, b) ((a) | (1 << (b)))
|
#define SET_BIT(a, b) ((a) | (1 << (b)))
|
||||||
#define CLEAR_BIT(a, b) ((a) & (~(1 << (b))))
|
#define CLEAR_BIT(a, b) ((a) & (~(1 << (b))))
|
||||||
#define GET_BIT(a, b) ((a & b) != 0)
|
#define GET_BIT(a, b) ((a & b) != 0)
|
||||||
#define TOOGLE_BIT(a, b) (a ^= b)
|
#define TOGGLE_BIT(a, b) (a ^= b)
|
||||||
|
|
||||||
|
|
||||||
/* during kernel startup, interrupts are disabled (among other things) */
|
/* during kernel startup, interrupts are disabled (among other things) */
|
||||||
|
|||||||
Reference in New Issue
Block a user