sfc: Move definition of struct falcon_nic_data into falcon.h
authorBen Hutchings <bhutchings@solarflare.com>
Mon, 23 Nov 2009 16:05:28 +0000 (16:05 +0000)
committerDavid S. Miller <davem@davemloft.net>
Tue, 24 Nov 2009 18:58:44 +0000 (10:58 -0800)
This is preparation for moving Falcon-specific state required by other
Falcon-specific code.

Signed-off-by: Ben Hutchings <bhutchings@solarflare.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/sfc/falcon.c
drivers/net/sfc/falcon.h

index 29e79f77b732ad40835ca1cd039e4d19969ebdb5..490bda0d010ef8295314f9793800e82aa9649dd6 100644 (file)
@@ -14,7 +14,6 @@
 #include <linux/module.h>
 #include <linux/seq_file.h>
 #include <linux/i2c.h>
-#include <linux/i2c-algo-bit.h>
 #include <linux/mii.h>
 #include "net_driver.h"
 #include "bitfield.h"
  * 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
index 54dad2de22f2a2b90a2c0caf449cb5596f92af61..46dd43bbbfd94b4e7d9bdf63cf432c7102515f59 100644 (file)
@@ -11,6 +11,7 @@
 #ifndef EFX_FALCON_H
 #define EFX_FALCON_H
 
+#include <linux/i2c-algo-bit.h>
 #include "net_driver.h"
 #include "efx.h"
 
@@ -29,6 +30,16 @@ static inline int falcon_rev(struct efx_nic *efx)
        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)
 {
        return &efx->board_info;