diff options
Diffstat (limited to 'drivers/net/sfc/boards.h')
| -rw-r--r-- | drivers/net/sfc/boards.h | 14 | 
1 files changed, 8 insertions, 6 deletions
diff --git a/drivers/net/sfc/boards.h b/drivers/net/sfc/boards.h index c6e01b64bfb4..d93c6c6a7548 100644 --- a/drivers/net/sfc/boards.h +++ b/drivers/net/sfc/boards.h @@ -1,6 +1,6 @@  /****************************************************************************   * Driver for Solarflare Solarstorm network controllers and boards - * Copyright 2007 Solarflare Communications Inc. + * Copyright 2007-2008 Solarflare Communications Inc.   *   * This program is free software; you can redistribute it and/or modify it   * under the terms of the GNU General Public License version 2 as published @@ -12,14 +12,16 @@  /* Board IDs (must fit in 8 bits) */  enum efx_board_type { -	EFX_BOARD_INVALID = 0, -	EFX_BOARD_SFE4001 = 1,   /* SFE4001 (10GBASE-T) */ +	EFX_BOARD_SFE4001 = 1,  	EFX_BOARD_SFE4002 = 2, -	/* Insert new types before here */ -	EFX_BOARD_MAX +	EFX_BOARD_SFN4111T = 0x51,  }; -extern int efx_set_board_info(struct efx_nic *efx, u16 revision_info); +extern void efx_set_board_info(struct efx_nic *efx, u16 revision_info); + +/* SFE4001 (10GBASE-T) */  extern int sfe4001_init(struct efx_nic *efx); +/* SFN4111T (100/1000/10GBASE-T) */ +extern int sfn4111t_init(struct efx_nic *efx);  #endif  | 
