]> git.droids-corp.org - dpdk.git/commitdiff
power: fix missing header includes
authorBruce Richardson <bruce.richardson@intel.com>
Fri, 29 Jan 2021 16:48:17 +0000 (16:48 +0000)
committerDavid Marchand <david.marchand@redhat.com>
Fri, 29 Jan 2021 19:59:09 +0000 (20:59 +0100)
The rte_power_guest_channel.h file did not include its dependent
headers, so add them.

Fixes: 5f443cc0f905 ("power: create guest channel public header file")
Cc: stable@dpdk.org
Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
lib/librte_power/rte_power_guest_channel.h

index adc9738174d5027d22af86dc057c9b1f67930398..ed4fbfdcd38a9070ebb0cde54afff925df735507 100644 (file)
@@ -4,6 +4,12 @@
 #ifndef RTE_POWER_GUEST_CHANNEL_H
 #define RTE_POWER_GUEST_CHANNEL_H
 
+#include <stdint.h>
+#include <stddef.h>
+#include <stdbool.h>
+
+#include <rte_compat.h>
+
 #ifdef __cplusplus
 extern "C" {
 #endif