aboutsummaryrefslogtreecommitdiff
path: root/include/libopencm3/stm32
diff options
context:
space:
mode:
authorRoger Light2012-12-12 20:34:44 +0000
committerRoger Light2012-12-12 20:34:44 +0000
commit512769296aa1a488f02dcb1505b650b98b6837ce (patch)
treebfa7a3b869db46e1b672e30db569e018da17b46c /include/libopencm3/stm32
parent70746ccd676445481511c0e8bc6b617f7b052878 (diff)
Update STM32 RNGEN register bit name to more closely match documentation.
Diffstat (limited to 'include/libopencm3/stm32')
-rw-r--r--include/libopencm3/stm32/f4/rng.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/libopencm3/stm32/f4/rng.h b/include/libopencm3/stm32/f4/rng.h
index 5f517c8..5553dd3 100644
--- a/include/libopencm3/stm32/f4/rng.h
+++ b/include/libopencm3/stm32/f4/rng.h
@@ -36,7 +36,7 @@
/* --- RNG_CR values ------------------------------------------------------- */
/* RNG ENABLE */
-#define RNG_CR_EN (1 << 2)
+#define RNG_CR_RNGEN (1 << 2)
/* RNG interupt enable */
#define RNG_CR_IE (1 << 3)