Commit 01aad7b6 authored by Ben Hutchings's avatar Ben Hutchings Committed by Jeff Garzik

sfc: Remove efx_nic_dummy_op_int() as redundant with efx_port_dummy_op_int()

Update comment on the dummy operation implementations.

Line up the board operation initialisers.
Signed-off-by: default avatarBen Hutchings <bhutchings@solarflare.com>
Signed-off-by: default avatarJeff Garzik <jgarzik@redhat.com>
parent 740847da
...@@ -1774,7 +1774,7 @@ static struct pci_device_id efx_pci_table[] __devinitdata = { ...@@ -1774,7 +1774,7 @@ static struct pci_device_id efx_pci_table[] __devinitdata = {
* *
* Dummy PHY/MAC/Board operations * Dummy PHY/MAC/Board operations
* *
* Can be used where the MAC does not implement this operation * Can be used for some unimplemented operations
* Needed so all function pointers are valid and do not have to be tested * Needed so all function pointers are valid and do not have to be tested
* before use * before use
* *
...@@ -1795,17 +1795,12 @@ static struct efx_phy_operations efx_dummy_phy_operations = { ...@@ -1795,17 +1795,12 @@ static struct efx_phy_operations efx_dummy_phy_operations = {
.reset_xaui = efx_port_dummy_op_void, .reset_xaui = efx_port_dummy_op_void,
}; };
/* Dummy board operations */
static int efx_nic_dummy_op_int(struct efx_nic *nic)
{
return 0;
}
static struct efx_board efx_dummy_board_info = { static struct efx_board efx_dummy_board_info = {
.init = efx_nic_dummy_op_int, .init = efx_port_dummy_op_int,
.init_leds = efx_port_dummy_op_int, .init_leds = efx_port_dummy_op_int,
.set_fault_led = efx_port_dummy_op_blink, .set_fault_led = efx_port_dummy_op_blink,
.fini = efx_port_dummy_op_void, .blink = efx_port_dummy_op_blink,
.fini = efx_port_dummy_op_void,
}; };
/************************************************************************** /**************************************************************************
......
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