Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 36232012 authored by David S. Miller's avatar David S. Miller
Browse files

xgene: Fix build warning with ACPI disabled.



drivers/net/ethernet/apm/xgene/xgene_enet_hw.c: In function 'xgene_enet_phy_connect':
drivers/net/ethernet/apm/xgene/xgene_enet_hw.c:759:22: warning: unused variable 'adev' [-Wunused-variable]

Fixes: 8089a96f ("drivers: net: xgene: Add backward compatibility")
Reported-by: default avatarStephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent d3480615
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -756,7 +756,6 @@ int xgene_enet_phy_connect(struct net_device *ndev)
	struct device_node *np;
	struct phy_device *phy_dev;
	struct device *dev = &pdata->pdev->dev;
	struct acpi_device *adev;
	int i;

	if (dev->of_node) {
@@ -781,7 +780,7 @@ int xgene_enet_phy_connect(struct net_device *ndev)
		pdata->phy_dev = phy_dev;
	} else {
#ifdef CONFIG_ACPI
		adev = acpi_phy_find_device(dev);
		struct acpi_device *adev = acpi_phy_find_device(dev);
		if (adev)
			pdata->phy_dev =  adev->driver_data;