From 9f416da7514f3ad5c48833bf204079a379b9ef88 Mon Sep 17 00:00:00 2001 From: Adithya Baglody Date: Tue, 27 Nov 2018 15:00:47 +0530 Subject: [PATCH] soc: ti_simplelink: cc32xx: soc.h: Incorrect enum definition. Instead of creating an typedef enum it was creating an object. Signed-off-by: Adithya Baglody --- soc/arm/ti_simplelink/cc32xx/soc.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/soc/arm/ti_simplelink/cc32xx/soc.h b/soc/arm/ti_simplelink/cc32xx/soc.h index 561239f8bb7..22a93ecb931 100644 --- a/soc/arm/ti_simplelink/cc32xx/soc.h +++ b/soc/arm/ti_simplelink/cc32xx/soc.h @@ -17,7 +17,7 @@ typedef u32_t IRQn_Type; /* Need to keep the remaining from cmsis.h, as Zephyr expects these. */ -enum { +typedef enum { Reset_IRQn = -15, NonMaskableInt_IRQn = -14, HardFault_IRQn = -13,