]> git.droids-corp.org - dpdk.git/blobdiff - buildtools/pmdinfogen/pmdinfogen.h
app/eventdev: switch sequence number to dynamic mbuf field
[dpdk.git] / buildtools / pmdinfogen / pmdinfogen.h
index 160867b9f36c161d74d8eb1b145d97c62fc2a106..38fd3ddcc35a729487c0b86c5bd1656d1bf02071 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)