mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-18 10:56:14 +00:00
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: 8089a96f601b ("drivers: net: xgene: Add backward compatibility") Reported-by: Stephen Rothwell <sfr@canb.auug.org.au> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
d3480615cf
commit
3623201234
@ -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;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user