mirror of
https://github.com/AsahiLinux/u-boot
synced 2025-02-17 22:49:02 +00:00
freescale: Drop old pre-DM_ETH code
This is used by ls1021atwr_sdcard_ifc_SECURE_BOOT with split config, but is not needed anymore, since Ethernet migration is complete. Drop it. Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
7ffbb5b659
commit
06a1edda6c
1 changed files with 0 additions and 12 deletions
|
@ -25,11 +25,7 @@ DECLARE_GLOBAL_DATA_PTR;
|
||||||
|
|
||||||
void ft_fixup_enet_phy_connect_type(void *fdt)
|
void ft_fixup_enet_phy_connect_type(void *fdt)
|
||||||
{
|
{
|
||||||
#ifdef CONFIG_DM_ETH
|
|
||||||
struct udevice *dev;
|
struct udevice *dev;
|
||||||
#else
|
|
||||||
struct eth_device *dev;
|
|
||||||
#endif
|
|
||||||
struct tsec_private *priv;
|
struct tsec_private *priv;
|
||||||
const char *enet_path, *phy_path;
|
const char *enet_path, *phy_path;
|
||||||
char enet[16];
|
char enet[16];
|
||||||
|
@ -37,12 +33,8 @@ void ft_fixup_enet_phy_connect_type(void *fdt)
|
||||||
int phy_node;
|
int phy_node;
|
||||||
int i = 0;
|
int i = 0;
|
||||||
uint32_t ph;
|
uint32_t ph;
|
||||||
#ifdef CONFIG_DM_ETH
|
|
||||||
char *name[3] = { "ethernet@2d10000", "ethernet@2d50000",
|
char *name[3] = { "ethernet@2d10000", "ethernet@2d50000",
|
||||||
"ethernet@2d90000" };
|
"ethernet@2d90000" };
|
||||||
#else
|
|
||||||
char *name[3] = { "eTSEC1", "eTSEC2", "eTSEC3" };
|
|
||||||
#endif
|
|
||||||
|
|
||||||
for (; i < ARRAY_SIZE(name); i++) {
|
for (; i < ARRAY_SIZE(name); i++) {
|
||||||
dev = eth_get_dev_by_name(name[i]);
|
dev = eth_get_dev_by_name(name[i]);
|
||||||
|
@ -53,11 +45,7 @@ void ft_fixup_enet_phy_connect_type(void *fdt)
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef CONFIG_DM_ETH
|
|
||||||
priv = dev_get_priv(dev);
|
priv = dev_get_priv(dev);
|
||||||
#else
|
|
||||||
priv = dev->priv;
|
|
||||||
#endif
|
|
||||||
if (priv->flags & TSEC_SGMII)
|
if (priv->flags & TSEC_SGMII)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue