drivers: watchdog: Add STM32G4x Watchdog support

Add watchdog driver support for STM32G4X SoC series.

Signed-off-by: Erwan Gouriou <erwan.gouriou@linaro.org>
Signed-off-by: Richard Osterloh <richard.osterloh@gmail.com>
This commit is contained in:
Erwan Gouriou 2019-09-06 11:31:28 +02:00 committed by Andrew Boie
commit e3c1683e8b
3 changed files with 33 additions and 0 deletions

View file

@ -60,6 +60,14 @@
#include <stm32g4xx_ll_adc.h>
#endif
#ifdef CONFIG_IWDG_STM32
#include <stm32g4xx_ll_iwdg.h>
#endif
#ifdef CONFIG_WWDG_STM32
#include <stm32l4xx_ll_wwdg.h>
#endif
#ifdef CONFIG_ENTROPY_STM32_RNG
#include <stm32g4xx_ll_rng.h>
#endif