Skip to content

Commit

Permalink
net: enetc: remove of_device_is_available() handling
Browse files Browse the repository at this point in the history
Since commit 6fffbc7 ("PCI: Honor firmware's device disabled
status"), this is redundant and does nothing, because enetc_pf_probe()
no longer even gets called.

Signed-off-by: Vladimir Oltean <vladimir.oltean@nxp.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Vladimir Oltean authored and David S. Miller committed Aug 9, 2023
1 parent f016804 commit bfce089
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions drivers/net/ethernet/freescale/enetc/enetc_pf.c
Original file line number Diff line number Diff line change
Expand Up @@ -1186,14 +1186,9 @@ static int enetc_init_port_rss_memory(struct enetc_si *si)

static int enetc_pf_register_with_ierb(struct pci_dev *pdev)
{
struct device_node *node = pdev->dev.of_node;
struct platform_device *ierb_pdev;
struct device_node *ierb_node;

/* Don't register with the IERB if the PF itself is disabled */
if (!node || !of_device_is_available(node))
return 0;

ierb_node = of_find_compatible_node(NULL, NULL,
"fsl,ls1028a-enetc-ierb");
if (!ierb_node || !of_device_is_available(ierb_node))
Expand Down Expand Up @@ -1285,12 +1280,6 @@ static int enetc_pf_probe(struct pci_dev *pdev,
goto err_psi_create;
}

if (node && !of_device_is_available(node)) {
dev_info(&pdev->dev, "device is disabled, skipping\n");
err = -ENODEV;
goto err_device_disabled;
}

pf = enetc_si_priv(si);
pf->si = si;
pf->total_vfs = pci_sriov_get_totalvfs(pdev);
Expand Down Expand Up @@ -1370,7 +1359,6 @@ static int enetc_pf_probe(struct pci_dev *pdev,
si->ndev = NULL;
free_netdev(ndev);
err_alloc_netdev:
err_device_disabled:
err_setup_mac_addresses:
enetc_psi_destroy(pdev);
err_psi_create:
Expand Down

0 comments on commit bfce089

Please sign in to comment.