commit | ab2cf79081094b88bea7a13738c4776ca716afb7 | [log] [tgz] |
---|---|---|
author | Yann Gautier <yann.gautier@st.com> | Fri Feb 02 17:22:32 2024 +0100 |
committer | Yann Gautier <yann.gautier@st.com> | Mon Feb 05 09:24:54 2024 +0100 |
tree | d767fc2eb50ada8a5ff8d4a8eccf87bc143132da | |
parent | ad393817c250a9c87b167a5e4106360d97f23246 [diff] |
fix(usb): add missing include When trying to compile USB stack for STM32MP2, the following warning happens: In file included from plat/st/stm32mp2/stm32mp2_usb_dfu.c:7: include/drivers/usb_device.h:193:9: error: unknown type name 'bool' 193 | bool is_in; Correct it by adding: #include <stdbool.h> Signed-off-by: Yann Gautier <yann.gautier@st.com> Change-Id: If17e4e269fcdc885e42f5fcad9cfb763829786e4