diff options
Diffstat (limited to 'drivers/net/ethernet/intel/igc/igc.h')
-rw-r--r-- | drivers/net/ethernet/intel/igc/igc.h | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/drivers/net/ethernet/intel/igc/igc.h b/drivers/net/ethernet/intel/igc/igc.h new file mode 100644 index 000000000000..afe595cfcf63 --- /dev/null +++ b/drivers/net/ethernet/intel/igc/igc.h | |||
@@ -0,0 +1,29 @@ | |||
1 | /* SPDX-License-Identifier: GPL-2.0 */ | ||
2 | /* Copyright (c) 2018 Intel Corporation */ | ||
3 | |||
4 | #ifndef _IGC_H_ | ||
5 | #define _IGC_H_ | ||
6 | |||
7 | #include <linux/kobject.h> | ||
8 | |||
9 | #include <linux/pci.h> | ||
10 | #include <linux/netdevice.h> | ||
11 | #include <linux/vmalloc.h> | ||
12 | |||
13 | #include <linux/ethtool.h> | ||
14 | |||
15 | #include <linux/sctp.h> | ||
16 | |||
17 | #define IGC_ERR(args...) pr_err("igc: " args) | ||
18 | |||
19 | #define PFX "igc: " | ||
20 | |||
21 | #include <linux/timecounter.h> | ||
22 | #include <linux/net_tstamp.h> | ||
23 | #include <linux/ptp_clock_kernel.h> | ||
24 | |||
25 | /* main */ | ||
26 | extern char igc_driver_name[]; | ||
27 | extern char igc_driver_version[]; | ||
28 | |||
29 | #endif /* _IGC_H_ */ | ||