common/octeontx2: fix memory mapping API usage
[dpdk.git] / lib / librte_eal / windows / eal_mp.c
index 16a5e8b..f2fa936 100644 (file)
@@ -16,6 +16,7 @@
 #include "eal_private.h"
 #include "eal_windows.h"
 #include "malloc_mp.h"
+#include "hotplug_mp.h"
 
 void
 rte_mp_channel_cleanup(void)
@@ -101,3 +102,17 @@ request_sync(void)
        EAL_LOG_STUB();
        return 0;
 }
+
+int
+eal_dev_hotplug_request_to_primary(struct eal_dev_mp_req *req)
+{
+       RTE_SET_USED(req);
+       return 0;
+}
+
+int
+eal_dev_hotplug_request_to_secondary(struct eal_dev_mp_req *req)
+{
+       RTE_SET_USED(req);
+       return 0;
+}