From b2b6eb46b32826386e8ab16ed623a6927df043da Mon Sep 17 00:00:00 2001 From: David Hendricks Date: Thu, 2 Feb 2012 17:44:22 -0800 Subject: [PATCH] correct typo for STM32L GPIO bit set/reset register (BSSR --> BSRR)) Signed-off-by: David Hendricks BUG=none TEST=none Change-Id: I2f452e4f842ac3b67157f94c5e533b53d0d8baec --- chip/stm32l/registers.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chip/stm32l/registers.h b/chip/stm32l/registers.h index 26464bed3c..6e9fc9e0c5 100644 --- a/chip/stm32l/registers.h +++ b/chip/stm32l/registers.h @@ -136,7 +136,7 @@ #define STM32L_GPIO_PUPDR(l) STM32L_GPIO_REG32(l, 0x0C) #define STM32L_GPIO_IDR(l) STM32L_GPIO_REG16(l, 0x10) #define STM32L_GPIO_ODR(l) STM32L_GPIO_REG16(l, 0x14) -#define STM32L_GPIO_BSSR(l) STM32L_GPIO_REG32(l, 0x18) +#define STM32L_GPIO_BSRR(l) STM32L_GPIO_REG32(l, 0x18) #define STM32L_GPIO_LCKR(l) STM32L_GPIO_REG32(l, 0x1C) #define STM32L_GPIO_AFRL(l) STM32L_GPIO_REG32(l, 0x20) #define STM32L_GPIO_AFRH(l) STM32L_GPIO_REG32(l, 0x24)