bus/dpaa: fix build
authorThomas Monjalon <thomas@monjalon.net>
Wed, 20 Jun 2018 10:38:06 +0000 (12:38 +0200)
committerThomas Monjalon <thomas@monjalon.net>
Thu, 21 Jun 2018 08:27:45 +0000 (10:27 +0200)
The DPAA bus driver is defining some macros without prefix.
So it can conflict with other libraries like libbsd:

drivers/bus/dpaa/include/compat.h:53:
error: "__packed" redefined
/usr/include/bsd/sys/cdefs.h:120:
note: this is the location of the previous definition

Fixes: 39f373cf015a ("bus/dpaa: add compatibility and helper macros")
Cc: stable@dpdk.org
Signed-off-by: Thomas Monjalon <thomas@monjalon.net>
Acked-by: Shreyansh Jain <shreyansh.jain@nxp.com>
drivers/bus/dpaa/include/compat.h

index e4b5702..92241d2 100644 (file)
  */
 
 /* Required compiler attributes */
+#ifndef __maybe_unused
 #define __maybe_unused __rte_unused
+#endif
+#ifndef __always_unused
 #define __always_unused        __rte_unused
+#endif
+#ifndef __packed
 #define __packed       __rte_packed
+#endif
 #define noinline       __attribute__((noinline))
 
 #define L1_CACHE_BYTES 64