Commit 0adc87c7 authored by Yann Gautier's avatar Yann Gautier
Browse files

drivers: st: add missing includes in ETZPC header



Depending on compiler, the issue about bool or uint*_t not defined can
appear.
Correct this by adding stdbool.h and stdint.h includes in etzpc.h.

Change-Id: If1419dc511efbe682459fa4a776481fa52a38aa3
Signed-off-by: default avatarYann Gautier <yann.gautier@st.com>
parent 54019a35
...@@ -7,6 +7,9 @@ ...@@ -7,6 +7,9 @@
#ifndef DRIVERS_ST_ETZPC_H #ifndef DRIVERS_ST_ETZPC_H
#define DRIVERS_ST_ETZPC_H #define DRIVERS_ST_ETZPC_H
#include <stdbool.h>
#include <stdint.h>
/* Define security level for each peripheral (DECPROT) */ /* Define security level for each peripheral (DECPROT) */
enum etzpc_decprot_attributes { enum etzpc_decprot_attributes {
ETZPC_DECPROT_S_RW = 0, ETZPC_DECPROT_S_RW = 0,
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment