drivers: interrupt_controller: Add STM32G0X interrupt support

Add interrupt support for STM32G0X SoC series.

Signed-off-by: Philippe Retornaz <philippe@shapescale.com>
Signed-off-by: Francois Ramu <francois.ramu@st.com>

# Conflicts:
#	drivers/interrupt_controller/exti_stm32.c
This commit is contained in:
Francois Ramu 2019-06-21 15:45:45 +02:00 committed by Maureen Helm
commit f9d2a41612
3 changed files with 20 additions and 12 deletions

View file

@ -36,6 +36,10 @@
#include <stm32g0xx_ll_rcc.h>
#endif /* CONFIG_CLOCK_CONTROL_STM32_CUBE */
#ifdef CONFIG_EXTI_STM32
#include <stm32g0xx_ll_exti.h>
#endif
#ifdef CONFIG_GPIO_STM32
#include <stm32g0xx_ll_gpio.h>
#endif