app/eventdev: switch sequence number to dynamic mbuf field
[dpdk.git] / buildtools / pmdinfogen / pmdinfogen.h
index 160867b..38fd3dd 100644 (file)
@@ -1,12 +1,8 @@
-
-/* Postprocess pmd object files to export hw support
+/* SPDX-License-Identifier: GPL-2.0
+ * Postprocess pmd object files to export hw support
  *
  * Copyright 2016 Neil Horman <nhorman@tuxdriver.com>
  * Based in part on modpost.c from the linux kernel
- *
- * This software may be used and distributed according to the terms
- * of the GNU General Public License V2, incorporated herein by reference.
- *
  */
 
 #include <stdio.h>
@@ -81,7 +77,7 @@ if ((fend) == ELFDATA2LSB) \
        ___x = le##width##toh(x); \
 else \
        ___x = be##width##toh(x); \
-       ___x; \
+___x; \
 })
 
 #define TO_NATIVE(fend, width, x) CONVERT_NATIVE(fend, width, x)