power: fix missing header includes

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>
This commit is contained in:
Bruce Richardson 2021-01-29 16:48:17 +00:00 committed by David Marchand
parent 4ab63cd60c
commit deb6ea1d2d

View File

@ -4,6 +4,12 @@
#ifndef RTE_POWER_GUEST_CHANNEL_H #ifndef RTE_POWER_GUEST_CHANNEL_H
#define 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 #ifdef __cplusplus
extern "C" { extern "C" {
#endif #endif