diff options
author | Alexander Duyck <alexander.h.duyck@intel.com> | 2014-09-20 19:47:46 -0400 |
---|---|---|
committer | Jeff Kirsher <jeffrey.t.kirsher@intel.com> | 2014-09-23 06:59:15 -0400 |
commit | b6fec18fd16bbf719c1c0aa83e41590573b4c58c (patch) | |
tree | f48741d1f1be6b76d54c344abd908208f42db869 /drivers/net/ethernet/intel/fm10k/fm10k_pf.h | |
parent | 1337e6b9775639ce10b4b454b8d018470886d7f3 (diff) |
fm10k: Add support for PF
This patch adds basic support for the PF. With this it is possible to
bring up the interface, but without being able to configure any of the
filters on the interface itself.
Signed-off-by: Alexander Duyck <alexander.h.duyck@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
Diffstat (limited to 'drivers/net/ethernet/intel/fm10k/fm10k_pf.h')
-rw-r--r-- | drivers/net/ethernet/intel/fm10k/fm10k_pf.h | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/drivers/net/ethernet/intel/fm10k/fm10k_pf.h b/drivers/net/ethernet/intel/fm10k/fm10k_pf.h new file mode 100644 index 000000000000..054392ffbd10 --- /dev/null +++ b/drivers/net/ethernet/intel/fm10k/fm10k_pf.h | |||
@@ -0,0 +1,28 @@ | |||
1 | /* Intel Ethernet Switch Host Interface Driver | ||
2 | * Copyright(c) 2013 - 2014 Intel Corporation. | ||
3 | * | ||
4 | * This program is free software; you can redistribute it and/or modify it | ||
5 | * under the terms and conditions of the GNU General Public License, | ||
6 | * version 2, as published by the Free Software Foundation. | ||
7 | * | ||
8 | * This program is distributed in the hope it will be useful, but WITHOUT | ||
9 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
10 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for | ||
11 | * more details. | ||
12 | * | ||
13 | * The full GNU General Public License is included in this distribution in | ||
14 | * the file called "COPYING". | ||
15 | * | ||
16 | * Contact Information: | ||
17 | * e1000-devel Mailing List <e1000-devel@lists.sourceforge.net> | ||
18 | * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497 | ||
19 | */ | ||
20 | |||
21 | #ifndef _FM10K_PF_H_ | ||
22 | #define _FM10K_PF_H_ | ||
23 | |||
24 | #include "fm10k_type.h" | ||
25 | #include "fm10k_common.h" | ||
26 | |||
27 | extern struct fm10k_info fm10k_pf_info; | ||
28 | #endif /* _FM10K_PF_H */ | ||