]> www.infradead.org Git - users/jedix/linux-maple.git/commitdiff
igb: Change version to remove number after -k in kernel versions.
authorCarolyn Wyborny <carolyn.wyborny@intel.com>
Thu, 26 May 2011 03:02:26 +0000 (03:02 +0000)
committerJoe Jin <joe.jin@oracle.com>
Thu, 17 May 2012 08:18:46 +0000 (16:18 +0800)
This patch changes the way versioning is done for igb in the kernel by
removing the number after the "k."  It has been determined that just the
"k" is sufficient to identify a kernel version and the following number
was used in an inconsistent manner.

Signed-off-by: Carolyn Wyborny <carolyn.wyborny@intel.com>
Tested-by: Jeff Pieper <jeffrey.e.pieper@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
(cherry picked from commit 929dd047720785f099e12113780b3d7914ce6d9f)

Signed-off-by: Joe Jin <joe.jin@oracle.com>
drivers/net/igb/igb_main.c

index 5a06e0386f2255f1e32cf3179eb7cb3d4d6df3f9..47bc01d028c37f91b09fc2dee4584342d81012d3 100644 (file)
@@ -55,9 +55,8 @@
 #define MAJ 3
 #define MIN 0
 #define BUILD 6
-#define KFIX 2
 #define DRV_VERSION __stringify(MAJ) "." __stringify(MIN) "." \
-__stringify(BUILD) "-k" __stringify(KFIX)
+__stringify(BUILD) "-k"
 char igb_driver_name[] = "igb";
 char igb_driver_version[] = DRV_VERSION;
 static const char igb_driver_string[] =