@@ -19,7 +19,7 @@ CPPFLAGS="$MDEV_CPPFLAGS $CPPFLAGS"
##########################################################################
if test x$mdev_support = xyes
then
- AC_DEFINE([ODP_MDEV], [1],
+ AC_DEFINE([_ODP_MDEV], [1],
[Define to 1 to enable mediated device drivers support])
AC_SUBST([MDEV_CPPFLAGS])
else
@@ -6,7 +6,7 @@
#include "config.h"
-#if defined(ODP_MDEV) && ODP_MDEV == 1
+#if defined(_ODP_MDEV) && _ODP_MDEV == 1
#include <dirent.h>
#include <errno.h>
@@ -590,4 +590,4 @@ void mdev_device_destroy(mdev_device_t *mdev)
munmap(mdev->mappings[i].addr, mdev->mappings[i].size);
}
-#endif /* ODP_MDEV */
+#endif /* _ODP_MDEV */
@@ -6,7 +6,7 @@
#include "config.h"
-#if defined(ODP_MDEV) && ODP_MDEV == 1
+#if defined(_ODP_MDEV) && _ODP_MDEV == 1
#include <linux/types.h>
#include <protocols/eth.h>
@@ -890,4 +890,4 @@ ODP_MODULE_CONSTRUCTOR(cxgb4_module_init)
*/
int enable_link_cxgb4_pktio_ops;
-#endif /* ODP_MDEV */
+#endif /* _ODP_MDEV */
@@ -6,7 +6,7 @@
#include "config.h"
-#if defined(ODP_MDEV) && ODP_MDEV == 1
+#if defined(_ODP_MDEV) && _ODP_MDEV == 1
#include <linux/types.h>
#include <protocols/eth.h>
@@ -640,4 +640,4 @@ ODP_MODULE_CONSTRUCTOR(netmap_pktio_ops)
*/
int enable_link_i40e_pktio_ops;
-#endif /* ODP_MDEV */
+#endif /* _ODP_MDEV */
@@ -44,7 +44,7 @@ extern int enable_link_socket_mmap_pktio_ops;
#if defined(ODP_PKTIO_TAP) && ODP_PKTIO_TAP == 1
extern int enable_link_tap_pktio_ops;
#endif
-#if defined(ODP_MDEV) && ODP_MDEV == 1
+#if defined(_ODP_MDEV) && _ODP_MDEV == 1
extern int enable_link_cxgb4_pktio_ops;
extern int enable_link_i40e_pktio_ops;
#endif
@@ -77,7 +77,7 @@ ODP_SUBSYSTEM_CONSTRUCTOR(pktio_ops)
#if defined(ODP_PKTIO_TAP) && ODP_PKTIO_TAP == 1
enable_link_tap_pktio_ops = 1;
#endif
-#if defined(ODP_MDEV) && ODP_MDEV == 1
+#if defined(_ODP_MDEV) && _ODP_MDEV == 1
enable_link_cxgb4_pktio_ops = 1;
enable_link_i40e_pktio_ops = 1;
#endif