mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-30 00:21:06 +00:00
board: ls1088aqds: transition to DM_ETH
In case CONFIG_DM_ETH is enabled, no hardcoding is necessary for DPAA2 Ethernet devices. Compile out any unnecessary setup when CONFIG_DM_ETH is activated. Also, force the PCI devices to be enumerated at probe time. Signed-off-by: Ioana Ciornei <ioana.ciornei@nxp.com> Reviewed-by: Priyanka Jain <priyanka.jain@nxp.com>
This commit is contained in:
parent
b62526282a
commit
791ec1b9e0
1 changed files with 2 additions and 0 deletions
|
@ -24,6 +24,7 @@
|
||||||
|
|
||||||
#include "ls1088a_qixis.h"
|
#include "ls1088a_qixis.h"
|
||||||
|
|
||||||
|
#ifndef CONFIG_DM_ETH
|
||||||
#ifdef CONFIG_FSL_MC_ENET
|
#ifdef CONFIG_FSL_MC_ENET
|
||||||
|
|
||||||
#define SFP_TX 0
|
#define SFP_TX 0
|
||||||
|
@ -735,6 +736,7 @@ int board_eth_init(bd_t *bis)
|
||||||
error = pci_eth_init(bis);
|
error = pci_eth_init(bis);
|
||||||
return error;
|
return error;
|
||||||
}
|
}
|
||||||
|
#endif // !CONFIG_DM_ETH
|
||||||
|
|
||||||
#if defined(CONFIG_RESET_PHY_R)
|
#if defined(CONFIG_RESET_PHY_R)
|
||||||
void reset_phy(void)
|
void reset_phy(void)
|
||||||
|
|
Loading…
Reference in a new issue