Alexander Duyck | b3890e3 | 2014-09-20 19:46:05 -0400 | [diff] [blame] | 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_H_ |
| 22 | #define _FM10K_H_ |
| 23 | |
| 24 | #include <linux/types.h> |
| 25 | #include <linux/etherdevice.h> |
| 26 | #include <linux/rtnetlink.h> |
| 27 | #include <linux/if_vlan.h> |
| 28 | #include <linux/pci.h> |
| 29 | |
| 30 | #include "fm10k_type.h" |
| 31 | |
| 32 | /* main */ |
| 33 | extern char fm10k_driver_name[]; |
| 34 | extern const char fm10k_driver_version[]; |
| 35 | |
| 36 | /* PCI */ |
| 37 | int fm10k_register_pci_driver(void); |
| 38 | void fm10k_unregister_pci_driver(void); |
| 39 | #endif /* _FM10K_H_ */ |