diff options
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/net/ixgbe/ixgbe_main.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/drivers/net/ixgbe/ixgbe_main.c b/drivers/net/ixgbe/ixgbe_main.c index 6f8adc7f5d7c..3dbe6896b2c3 100644 --- a/drivers/net/ixgbe/ixgbe_main.c +++ b/drivers/net/ixgbe/ixgbe_main.c | |||
@@ -51,8 +51,12 @@ | |||
51 | char ixgbe_driver_name[] = "ixgbe"; | 51 | char ixgbe_driver_name[] = "ixgbe"; |
52 | static const char ixgbe_driver_string[] = | 52 | static const char ixgbe_driver_string[] = |
53 | "Intel(R) 10 Gigabit PCI Express Network Driver"; | 53 | "Intel(R) 10 Gigabit PCI Express Network Driver"; |
54 | 54 | #define MAJ 3 | |
55 | #define DRV_VERSION "3.2.9-k2" | 55 | #define MIN 2 |
56 | #define BUILD 9 | ||
57 | #define KFIX 2 | ||
58 | #define DRV_VERSION __stringify(MAJ) "." __stringify(MIN) "." \ | ||
59 | __stringify(BUILD) "-k" __stringify(KFIX) | ||
56 | const char ixgbe_driver_version[] = DRV_VERSION; | 60 | const char ixgbe_driver_version[] = DRV_VERSION; |
57 | static const char ixgbe_copyright[] = | 61 | static const char ixgbe_copyright[] = |
58 | "Copyright (c) 1999-2011 Intel Corporation."; | 62 | "Copyright (c) 1999-2011 Intel Corporation."; |