diff options
| author | Mugunthan V N <[email protected]> | 2016-02-02 15:51:31 +0530 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2016-02-08 10:10:45 -0500 |
| commit | 0369008c366cbc0288e353e7ceb8068a6ad0ac58 (patch) | |
| tree | 50147db102889c84a97fe3e486d9b19cbe23dd8c | |
| parent | 362b96cb86dcdd4fc4d76a503a1c7f3d46706c9b (diff) | |
board: ti: ks2_evm: remove board_eth_init when CONFIG_DM_ETH is defined
remove board_eth_init when CONFIG_DM_ETH is defined
Signed-off-by: Mugunthan V N <[email protected]>
Reviewed-by: Tom Rini <[email protected]>
Acked-by: Joe Hershberger <[email protected]>
| -rw-r--r-- | board/ti/ks2_evm/board.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/board/ti/ks2_evm/board.c b/board/ti/ks2_evm/board.c index 73d94a6729d..7d1709c880a 100644 --- a/board/ti/ks2_evm/board.c +++ b/board/ti/ks2_evm/board.c @@ -56,6 +56,7 @@ int board_init(void) } #ifdef CONFIG_DRIVER_TI_KEYSTONE_NET +#ifndef CONFIG_DM_ETH int get_eth_env_param(char *env_name) { char *env; @@ -105,6 +106,7 @@ int board_eth_init(bd_t *bis) return 0; } #endif +#endif #ifdef CONFIG_SPL_BUILD void spl_board_init(void) |
