soc: stm32: Extended watchdog support to all series

STM32F2, STM32F7 and STM32L0 were missing wtachdog API support.
Fix this.

Signed-off-by: Erwan Gouriou <erwan.gouriou@linaro.org>
This commit is contained in:
Erwan Gouriou 2019-02-01 13:43:08 +01:00 committed by Anas Nashif
commit 1a05f2fae3
3 changed files with 12 additions and 0 deletions

View file

@ -46,6 +46,10 @@
#include <stm32f2xx_ll_gpio.h>
#endif
#ifdef CONFIG_IWDG_STM32
#include <stm32f2xx_ll_iwdg.h>
#endif
#endif /* !_ASMLANGUAGE */
#endif /* _STM32F2_SOC_H_ */

View file

@ -64,6 +64,10 @@
#include <stm32f7xx_ll_gpio.h>
#endif
#ifdef CONFIG_IWDG_STM32
#include <stm32f7xx_ll_iwdg.h>
#endif
#endif /* !_ASMLANGUAGE */
#endif /* _STM32F7_SOC_H_ */

View file

@ -56,6 +56,10 @@
#include <stm32l0xx_ll_gpio.h>
#endif
#ifdef CONFIG_IWDG_STM32
#include <stm32l0xx_ll_iwdg.h>
#endif
#endif /* !_ASMLANGUAGE */
#endif /* _STM32L0_SOC_H_ */