Commit 1c420c73 authored by Jacob Keller's avatar Jacob Keller Committed by Jeff Kirsher

ixgbe: fix function-like macro, remove semicolon

This patch removes the semicolon from the end of the do-while(0)
construct in two function-like macros.
Signed-off-by: default avatarJacob Keller <jacob.e.keller@intel.com>
Tested-by: default avatarPhil Schmitt <phillip.j.schmitt@intel.com>
Signed-off-by: default avatarJeff Kirsher <jeffrey.t.kirsher@intel.com>
parent e7cf745b
...@@ -1453,7 +1453,7 @@ do { \ ...@@ -1453,7 +1453,7 @@ do { \
bucket_hash ^= hi_hash_dword >> n; \ bucket_hash ^= hi_hash_dword >> n; \
else if (IXGBE_ATR_SIGNATURE_HASH_KEY & (0x01 << (n + 16))) \ else if (IXGBE_ATR_SIGNATURE_HASH_KEY & (0x01 << (n + 16))) \
sig_hash ^= hi_hash_dword << (16 - n); \ sig_hash ^= hi_hash_dword << (16 - n); \
} while (0); } while (0)
/** /**
* ixgbe_atr_compute_sig_hash_82599 - Compute the signature hash * ixgbe_atr_compute_sig_hash_82599 - Compute the signature hash
...@@ -1579,7 +1579,7 @@ do { \ ...@@ -1579,7 +1579,7 @@ do { \
bucket_hash ^= lo_hash_dword >> n; \ bucket_hash ^= lo_hash_dword >> n; \
if (IXGBE_ATR_BUCKET_HASH_KEY & (0x01 << (n + 16))) \ if (IXGBE_ATR_BUCKET_HASH_KEY & (0x01 << (n + 16))) \
bucket_hash ^= hi_hash_dword >> n; \ bucket_hash ^= hi_hash_dword >> n; \
} while (0); } while (0)
/** /**
* ixgbe_atr_compute_perfect_hash_82599 - Compute the perfect filter hash * ixgbe_atr_compute_perfect_hash_82599 - Compute the perfect filter hash
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment