From: Ben Hutchings Date: Thu, 2 Dec 2010 13:48:20 +0000 (+0000) Subject: sfc: Use current MAC address, not NVRAM MAC address, for WoL filter X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=02ebc26865c2755720d2ede90a5ab27c45741823;p=linux-beck.git sfc: Use current MAC address, not NVRAM MAC address, for WoL filter Signed-off-by: Ben Hutchings Signed-off-by: David S. Miller --- diff --git a/drivers/net/sfc/siena.c b/drivers/net/sfc/siena.c index 45236f58a258..b31598079c3d 100644 --- a/drivers/net/sfc/siena.c +++ b/drivers/net/sfc/siena.c @@ -562,7 +562,7 @@ static int siena_set_wol(struct efx_nic *efx, u32 type) if (nic_data->wol_filter_id != -1) efx_mcdi_wol_filter_remove(efx, nic_data->wol_filter_id); - rc = efx_mcdi_wol_filter_set_magic(efx, efx->mac_address, + rc = efx_mcdi_wol_filter_set_magic(efx, efx->net_dev->dev_addr, &nic_data->wol_filter_id); if (rc) goto fail;