diff options
author | Ben Hutchings <bhutchings@solarflare.com> | 2009-11-25 11:09:41 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-11-26 18:59:16 -0500 |
commit | 44838a447de3b1541cbf845853c4f8999310b0dd (patch) | |
tree | 53d5f1b0a6ad773764c7f97eb1d48619e781a67f /drivers/net/sfc/tenxpress.c | |
parent | 734a350a6ccee59647f064fd49cd6cebc5dda48b (diff) |
sfc: Clean up struct falcon_board and struct falcon_board_data
Put all static information in struct falcon_board_type and replace it
with a pointer in struct falcon_board. Simplify probing aocordingly.
Signed-off-by: Ben Hutchings <bhutchings@solarflare.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/sfc/tenxpress.c')
-rw-r--r-- | drivers/net/sfc/tenxpress.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/sfc/tenxpress.c b/drivers/net/sfc/tenxpress.c index b001f38524f7..a95402d601c7 100644 --- a/drivers/net/sfc/tenxpress.c +++ b/drivers/net/sfc/tenxpress.c | |||
@@ -303,7 +303,7 @@ static int tenxpress_phy_init(struct efx_nic *efx) | |||
303 | u16 old_adv, adv; | 303 | u16 old_adv, adv; |
304 | int rc = 0; | 304 | int rc = 0; |
305 | 305 | ||
306 | falcon_board(efx)->init_phy(efx); | 306 | falcon_board(efx)->type->init_phy(efx); |
307 | 307 | ||
308 | phy_data = kzalloc(sizeof(*phy_data), GFP_KERNEL); | 308 | phy_data = kzalloc(sizeof(*phy_data), GFP_KERNEL); |
309 | if (!phy_data) | 309 | if (!phy_data) |