summaryrefslogtreecommitdiff
path: root/board
diff options
context:
space:
mode:
authorPatrick Delaunay <patrick.delaunay@st.com>2019-06-21 16:26:40 +0300
committerPatrick Delaunay <patrick.delaunay@st.com>2019-07-12 12:50:54 +0300
commit8e1947774e39f18912fb2fb130e1c5bba0db0d79 (patch)
treefdf50142c69de12fc9ddec96f55b9867d58ae90b /board
parente609e131c1e06bc3ed2da01709c889934433d76c (diff)
downloadu-boot-8e1947774e39f18912fb2fb130e1c5bba0db0d79.tar.xz
board: stm32mp1: Fix warnings when compiling with W=1
This patch solves the following warnings: warning: no previous prototype for 'board_quiesce_devices' [-Wmissing-prototypes] void board_quiesce_devices(void) ^~~~~~~~~~~~~~~~~~~~~ Signed-off-by: Patrice Chotard <patrice.chotard@st.com> Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Diffstat (limited to 'board')
-rw-r--r--board/st/stm32mp1/stm32mp1.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/board/st/stm32mp1/stm32mp1.c b/board/st/stm32mp1/stm32mp1.c
index ff4907d44a..b99c6c08a3 100644
--- a/board/st/stm32mp1/stm32mp1.c
+++ b/board/st/stm32mp1/stm32mp1.c
@@ -4,6 +4,7 @@
*/
#include <common.h>
#include <adc.h>
+#include <bootm.h>
#include <config.h>
#include <clk.h>
#include <dm.h>