From 5cd45774899eae249c8c93fc2f7d0a28379c4194 Mon Sep 17 00:00:00 2001 From: Grigory Revzin Date: Mon, 17 Jul 2017 15:16:53 +0300 Subject: [PATCH] stm32: can: fixed typos in CAN_RFxR_FOVR --- include/libopencm3/stm32/can.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/libopencm3/stm32/can.h b/include/libopencm3/stm32/can.h index 1aaa9681..614355a4 100644 --- a/include/libopencm3/stm32/can.h +++ b/include/libopencm3/stm32/can.h @@ -315,7 +315,7 @@ LGPL License Terms @ref lgpl_license #define CAN_RF0R_RFOM0 (1 << 5) /* FOVR0: FIFO 0 overrun */ -#define CAN_RF0R_FAVR0 (1 << 4) +#define CAN_RF0R_FOVR0 (1 << 4) /* FULL0: FIFO 0 full */ #define CAN_RF0R_FULL0 (1 << 3) @@ -333,7 +333,7 @@ LGPL License Terms @ref lgpl_license #define CAN_RF1R_RFOM1 (1 << 5) /* FOVR1: FIFO 1 overrun */ -#define CAN_RF1R_FAVR1 (1 << 4) +#define CAN_RF1R_FOVR1 (1 << 4) /* FULL1: FIFO 1 full */ #define CAN_RF1R_FULL1 (1 << 3)