kernel: Toggle not toogle; no functional change

This commit is contained in:
Alexander von Gluck IV 2014-05-20 18:33:59 -05:00
parent 5c62e15f76
commit cc67216333
1 changed files with 1 additions and 1 deletions

View File

@ -71,7 +71,7 @@
#define SET_BIT(a, b) ((a) | (1 << (b)))
#define CLEAR_BIT(a, b) ((a) & (~(1 << (b))))
#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) */