Commit ba911a4d authored by Ben Hutchings's avatar Ben Hutchings Committed by Jeff Garzik

[netdrvr] sfc: Removed bogus 'fall-thru' comments

Fall-through is expected outside a switch statement.
Signed-off-by: default avatarBen Hutchings <bhutchings@solarflare.com>
Signed-off-by: default avatarJeff Garzik <jgarzik@redhat.com>
parent 75f2d3ea
...@@ -2468,14 +2468,12 @@ int falcon_probe_nic(struct efx_nic *efx) ...@@ -2468,14 +2468,12 @@ int falcon_probe_nic(struct efx_nic *efx)
fail5: fail5:
falcon_free_buffer(efx, &efx->irq_status); falcon_free_buffer(efx, &efx->irq_status);
fail4: fail4:
/* fall-thru */
fail3: fail3:
if (nic_data->pci_dev2) { if (nic_data->pci_dev2) {
pci_dev_put(nic_data->pci_dev2); pci_dev_put(nic_data->pci_dev2);
nic_data->pci_dev2 = NULL; nic_data->pci_dev2 = NULL;
} }
fail2: fail2:
/* fall-thru */
fail1: fail1:
kfree(efx->nic_data); kfree(efx->nic_data);
return rc; return rc;
......
...@@ -736,7 +736,6 @@ void __efx_rx_packet(struct efx_channel *channel, ...@@ -736,7 +736,6 @@ void __efx_rx_packet(struct efx_channel *channel,
/* Update allocation strategy method */ /* Update allocation strategy method */
channel->rx_alloc_level += RX_ALLOC_FACTOR_SKB; channel->rx_alloc_level += RX_ALLOC_FACTOR_SKB;
/* fall-thru */
done: done:
efx->net_dev->last_rx = jiffies; efx->net_dev->last_rx = jiffies;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment