Commit 64900e8f authored by Sasha Neftin's avatar Sasha Neftin Committed by Jeff Kirsher
Browse files

igc: Fix double definition



IGC_START_ITR has beed defined twice
This patch come to fix it

Signed-off-by: default avatarSasha Neftin <sasha.neftin@intel.com>
Tested-by: default avatarAaron Brown <aaron.f.brown@intel.com>
Signed-off-by: default avatarJeff Kirsher <jeffrey.t.kirsher@intel.com>
parent b8a61ea1
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -246,9 +246,6 @@ extern char igc_driver_version[];
/* flags controlling PTP/1588 function */
#define IGC_PTP_ENABLED		BIT(0)

/* Interrupt defines */
#define IGC_START_ITR			648 /* ~6000 ints/sec */

/* Flags definitions */
#define IGC_FLAG_HAS_MSI		BIT(0)
#define IGC_FLAG_QUEUE_PAIRS		BIT(3)
@@ -270,6 +267,7 @@ extern char igc_driver_version[];
#define IGC_MRQC_RSS_FIELD_IPV4_UDP	0x00400000
#define IGC_MRQC_RSS_FIELD_IPV6_UDP	0x00800000

/* Interrupt defines */
#define IGC_START_ITR			648 /* ~6000 ints/sec */
#define IGC_4K_ITR			980
#define IGC_20K_ITR			196