Browse Source

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 <mugunthanvnm@ti.com>
Reviewed-by: Tom Rini <trini@konsulko.com>
Acked-by: Joe Hershberger <joe.hershberger@ni.com>
Mugunthan V N 9 years ago
parent
commit
0369008c36
1 changed files with 2 additions and 0 deletions
  1. 2 0
      board/ti/ks2_evm/board.c

+ 2 - 0
board/ti/ks2_evm/board.c

@@ -56,6 +56,7 @@ int board_init(void)
 }
 }
 
 
 #ifdef CONFIG_DRIVER_TI_KEYSTONE_NET
 #ifdef CONFIG_DRIVER_TI_KEYSTONE_NET
+#ifndef CONFIG_DM_ETH
 int get_eth_env_param(char *env_name)
 int get_eth_env_param(char *env_name)
 {
 {
 	char *env;
 	char *env;
@@ -105,6 +106,7 @@ int board_eth_init(bd_t *bis)
 	return 0;
 	return 0;
 }
 }
 #endif
 #endif
+#endif
 
 
 #ifdef CONFIG_SPL_BUILD
 #ifdef CONFIG_SPL_BUILD
 void spl_board_init(void)
 void spl_board_init(void)