diff options
author | Marek Vasut | 2020-03-21 17:38:57 +0100 |
---|---|---|
committer | marex | 2020-03-30 11:35:23 +0200 |
commit | 264398b2ec5dd5ee045939e11e14caeece4c8dde (patch) | |
tree | c822f754f2ced2081ee6e000498460e6002cd13b /board | |
parent | 4666521d19df4421be1b3c1042ac7ecfb351f884 (diff) |
ARM: rmobile: Only register ethernet on V2H Blanche if not DM_ETH
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>
Diffstat (limited to 'board')
-rw-r--r-- | board/renesas/blanche/blanche.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/board/renesas/blanche/blanche.c b/board/renesas/blanche/blanche.c index 471d80fc72f..c15387366c7 100644 --- a/board/renesas/blanche/blanche.c +++ b/board/renesas/blanche/blanche.c @@ -314,6 +314,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; @@ -338,6 +339,7 @@ int board_eth_init(bd_t *bis) return rc; } +#endif int dram_init(void) { |