diff options
author | Jeff Kirsher <jeffrey.t.kirsher@intel.com> | 2011-03-17 14:11:38 -0400 |
---|---|---|
committer | Jeff Kirsher <jeffrey.t.kirsher@intel.com> | 2011-04-13 22:21:28 -0400 |
commit | 75e3d3c6812ef2387f8dcfd86437cff00f64b68b (patch) | |
tree | b23d5c2db67022704e76a29a2e234e0ae6e387ac | |
parent | d6cd8e0e75b66896bd4e14c8883d62322831cb8f (diff) |
ixgbe: update version string for Dell CEM use
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
Acked-by: Don Skidmore <donald.c.skidmore@intel.com>
Tested-by: Stephen Ko <stephen.s.ko@intel.com>
-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."; |