diff options
author | Ben Hutchings <bhutchings@solarflare.com> | 2012-01-09 19:54:16 +0000 |
---|---|---|
committer | Ben Hutchings <bhutchings@solarflare.com> | 2012-01-27 00:10:57 +0000 |
commit | 6c8eef4ac8dfd888be5b46e363f8e42b9f0d5b6a (patch) | |
tree | 78346aef553237b29146c5d37a55c3efb0727f10 /drivers | |
parent | 2aa9ef11e70c47ed26f831798f02ad3794e5ad41 (diff) | |
download | linux-3.10-6c8eef4ac8dfd888be5b46e363f8e42b9f0d5b6a.tar.gz linux-3.10-6c8eef4ac8dfd888be5b46e363f8e42b9f0d5b6a.tar.bz2 linux-3.10-6c8eef4ac8dfd888be5b46e363f8e42b9f0d5b6a.zip |
sfc: Remove redundant 'rc' variable, always set to 0
Signed-off-by: Ben Hutchings <bhutchings@solarflare.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/net/ethernet/sfc/efx.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/net/ethernet/sfc/efx.c b/drivers/net/ethernet/sfc/efx.c index 8ecddd05667..fce42f428c6 100644 --- a/drivers/net/ethernet/sfc/efx.c +++ b/drivers/net/ethernet/sfc/efx.c @@ -1793,7 +1793,6 @@ static void efx_watchdog(struct net_device *net_dev) static int efx_change_mtu(struct net_device *net_dev, int new_mtu) { struct efx_nic *efx = netdev_priv(net_dev); - int rc = 0; EFX_ASSERT_RESET_SERIALISED(efx); @@ -1816,7 +1815,7 @@ static int efx_change_mtu(struct net_device *net_dev, int new_mtu) efx_init_channels(efx); efx_start_all(efx); - return rc; + return 0; } static int efx_set_mac_address(struct net_device *net_dev, void *data) |