[PATCH] ARM: rmobile: Only register ethernet on V2H Blanche if not DM_ETH

21 Mar
2020
21 Mar
'20
5:44 p.m.
If the DM_ETH is enabled, the board-specific ethernet registeration should be disabled, make it so.
Signed-off-by: Marek Vasut marek.vasut+renesas@gmail.com Cc: Nobuhiro Iwamatsu iwamatsu@nigauri.org --- board/renesas/blanche/blanche.c | 2 ++ 1 file changed, 2 insertions(+)
diff --git a/board/renesas/blanche/blanche.c b/board/renesas/blanche/blanche.c index 0807967d6e..d2059ccccb 100644 --- a/board/renesas/blanche/blanche.c +++ b/board/renesas/blanche/blanche.c @@ -313,6 +313,7 @@ int board_init(void) }
/* Added for BLANCHE(R-CarV2H board) */ +#ifndef CONFIG_DM_ETH int board_eth_init(bd_t *bis) { int rc = 0; @@ -337,6 +338,7 @@ int board_eth_init(bd_t *bis)
return rc; } +#endif
int dram_init(void) {
--
2.25.1
1877
Age (days ago)
1877
Last active (days ago)
0 comments
1 participants
participants (1)
-
Marek Vasut