From 20e1ee174d814524be57265d7b5ebaa5559e8000 Mon Sep 17 00:00:00 2001 From: Karl Palsson Date: Sun, 6 Mar 2016 23:26:05 +0000 Subject: [PATCH] stm32l4: rcc: fix typo in RCC_CR_CSSON bit define Reported by @benjaminlevine --- include/libopencm3/stm32/l4/rcc.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/libopencm3/stm32/l4/rcc.h b/include/libopencm3/stm32/l4/rcc.h index 4a8e3b01..9fe38e1a 100644 --- a/include/libopencm3/stm32/l4/rcc.h +++ b/include/libopencm3/stm32/l4/rcc.h @@ -99,7 +99,7 @@ #define RCC_CR_PLLSAI1ON (1 << 26) #define RCC_CR_PLLRDY (1 << 25) #define RCC_CR_PLLON (1 << 24) -#define RCC_CR_CSSEON (1 << 19) +#define RCC_CR_CSSON (1 << 19) #define RCC_CR_HSEBYP (1 << 18) #define RCC_CR_HSERDY (1 << 17) #define RCC_CR_HSEON (1 << 16)