Commit 5c16a96c authored by Ben Hutchings's avatar Ben Hutchings Committed by David S. Miller

sfc: Move definition of struct falcon_nic_data into falcon.h

This is preparation for moving Falcon-specific state required by other
Falcon-specific code.
Signed-off-by: default avatarBen Hutchings <bhutchings@solarflare.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 278c0621
...@@ -14,7 +14,6 @@ ...@@ -14,7 +14,6 @@
#include <linux/module.h> #include <linux/module.h>
#include <linux/seq_file.h> #include <linux/seq_file.h>
#include <linux/i2c.h> #include <linux/i2c.h>
#include <linux/i2c-algo-bit.h>
#include <linux/mii.h> #include <linux/mii.h>
#include "net_driver.h" #include "net_driver.h"
#include "bitfield.h" #include "bitfield.h"
...@@ -33,16 +32,6 @@ ...@@ -33,16 +32,6 @@
* present in SFE400X evaluation boards * present in SFE400X evaluation boards
*/ */
/**
* struct falcon_nic_data - Falcon NIC state
* @pci_dev2: The secondary PCI device if present
* @i2c_data: Operations and state for I2C bit-bashing algorithm
*/
struct falcon_nic_data {
struct pci_dev *pci_dev2;
struct i2c_algo_bit_data i2c_data;
};
/************************************************************************** /**************************************************************************
* *
* Configurable values * Configurable values
......
...@@ -11,6 +11,7 @@ ...@@ -11,6 +11,7 @@
#ifndef EFX_FALCON_H #ifndef EFX_FALCON_H
#define EFX_FALCON_H #define EFX_FALCON_H
#include <linux/i2c-algo-bit.h>
#include "net_driver.h" #include "net_driver.h"
#include "efx.h" #include "efx.h"
...@@ -29,6 +30,16 @@ static inline int falcon_rev(struct efx_nic *efx) ...@@ -29,6 +30,16 @@ static inline int falcon_rev(struct efx_nic *efx)
return efx->pci_dev->revision; return efx->pci_dev->revision;
} }
/**
* struct falcon_nic_data - Falcon NIC state
* @pci_dev2: The secondary PCI device if present
* @i2c_data: Operations and state for I2C bit-bashing algorithm
*/
struct falcon_nic_data {
struct pci_dev *pci_dev2;
struct i2c_algo_bit_data i2c_data;
};
static inline struct falcon_board *falcon_board(struct efx_nic *efx) static inline struct falcon_board *falcon_board(struct efx_nic *efx)
{ {
return &efx->board_info; return &efx->board_info;
......
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