summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/lpc/lpc.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lpc/lpc.h b/src/lpc/lpc.h
index f13ec615..8fb78649 100644
--- a/src/lpc/lpc.h
+++ b/src/lpc/lpc.h
@@ -1014,12 +1014,12 @@ extern struct lpc_nvic lpc_nvic;
static inline void
lpc_nvic_set_enable(int irq) {
- lpc_nvic.iser |= (1 << irq);
+ lpc_nvic.iser = (1 << irq);
}
static inline void
lpc_nvic_clear_enable(int irq) {
- lpc_nvic.icer |= (1 << irq);
+ lpc_nvic.icer = (1 << irq);
}
static inline int