summaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorChristophe Leroy <christophe.leroy@c-s.fr>2018-11-21 08:51:55 +0000
committerTom Rini <trini@konsulko.com>2018-12-03 10:44:10 -0500
commitc1cd921b7552114293e2490aaca2a667f9d1c723 (patch)
tree3987425a118501fe5d6f2e16e45620015150210c /common
parent42b54013a08dbda78b466243f03ced249a7fbe84 (diff)
board_r: fix build with DM_SPI
CC common/board_r.o common/board_r.c:747:2: error: ‘initr_spi’ undeclared here (not in a function) initr_spi, ^ make[1]: *** [common/board_r.o] Error 1 Fixes: ebe76a2df9f6 ("dm: Remove spi_init() from board_r.c when using driver model") Signed-off-by: Christophe Leroy <christophe.leroy@c-s.fr>
Diffstat (limited to 'common')
-rw-r--r--common/board_r.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/board_r.c b/common/board_r.c
index c55e33eec2..0c2129b8ce 100644
--- a/common/board_r.c
+++ b/common/board_r.c
@@ -743,7 +743,7 @@ static init_fnc_t init_sequence_r[] = {
/* initialize higher level parts of CPU like time base and timers */
cpu_init_r,
#endif
-#ifdef CONFIG_PPC
+#if defined(CONFIG_PPC) && !defined(CONFIG_DM_SPI)
initr_spi,
#endif
#ifdef CONFIG_CMD_NAND