diff options
author | Sasha Neftin <sasha.neftin@intel.com> | 2018-10-11 10:17:10 +0300 |
---|---|---|
committer | Jeff Kirsher <jeffrey.t.kirsher@intel.com> | 2018-10-17 13:06:24 -0700 |
commit | 146740f9abc4976e4f0af1aa302efee1c699d2e4 (patch) | |
tree | c101ff9e41f550aa5e5665c1947b7f2d2b5a0980 /drivers/net/ethernet/intel/igc/igc.h | |
parent | d89f88419f999f03af2282789f2d2eea6468c00a (diff) |
igc: Add support for PF
This patch adds the basic defines and structures needed by the PF for
operation. With this it is possible to bring up the interface,
but without being able to configure any of the filters on
the interface itself.
Add skeleton for a function pointers.
Signed-off-by: Sasha Neftin <sasha.neftin@intel.com>
Tested-by: Aaron Brown <aaron.f.brown@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
Diffstat (limited to 'drivers/net/ethernet/intel/igc/igc.h')
-rw-r--r-- | drivers/net/ethernet/intel/igc/igc.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/drivers/net/ethernet/intel/igc/igc.h b/drivers/net/ethernet/intel/igc/igc.h index afe595cfcf63..481b2ee694fa 100644 --- a/drivers/net/ethernet/intel/igc/igc.h +++ b/drivers/net/ethernet/intel/igc/igc.h @@ -22,8 +22,21 @@ #include <linux/net_tstamp.h> #include <linux/ptp_clock_kernel.h> +#include "igc_hw.h" + /* main */ extern char igc_driver_name[]; extern char igc_driver_version[]; +/* Board specific private data structure */ +struct igc_adapter { + u8 __iomem *io_addr; + + /* OS defined structs */ + struct pci_dev *pdev; + + /* structs defined in igc_hw.h */ + struct igc_hw hw; +}; + #endif /* _IGC_H_ */ |