From 9047b8c5f46007ca274fa669e6b75c1ecb3461a4 Mon Sep 17 00:00:00 2001 From: Karl Palsson Date: Sat, 12 Mar 2016 22:23:30 +0000 Subject: [PATCH] stm32l4: rcc: correct register name Use the same name as the reference manual and the same name as other parts. --- 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 6ab67bb6..a3fe50ca 100644 --- a/include/libopencm3/stm32/l4/rcc.h +++ b/include/libopencm3/stm32/l4/rcc.h @@ -45,7 +45,7 @@ #define RCC_CR MMIO32(RCC_BASE + 0x00) #define RCC_ICSCR MMIO32(RCC_BASE + 0x04) #define RCC_CFGR MMIO32(RCC_BASE + 0x08) -#define RCC_PLL_CFGR MMIO32(RCC_BASE + 0x0c) +#define RCC_PLLCFGR MMIO32(RCC_BASE + 0x0c) #define RCC_PLLSAI1_CFGR MMIO32(RCC_BASE + 0x10) #define RCC_PLLSAI2_CFGR MMIO32(RCC_BASE + 0x14) #define RCC_CIER MMIO32(RCC_BASE + 0x18)