aboutsummaryrefslogtreecommitdiff
path: root/platform/linux-generic/include
diff options
context:
space:
mode:
Diffstat (limited to 'platform/linux-generic/include')
-rw-r--r--platform/linux-generic/include/odp_buffer_internal.h2
-rw-r--r--platform/linux-generic/include/odp_queue_internal.h2
-rw-r--r--platform/linux-generic/include/odp_schedule_if.h (renamed from platform/linux-generic/include/odp_schedule_internal.h)7
3 files changed, 4 insertions, 7 deletions
diff --git a/platform/linux-generic/include/odp_buffer_internal.h b/platform/linux-generic/include/odp_buffer_internal.h
index deccf01fc..a427a806f 100644
--- a/platform/linux-generic/include/odp_buffer_internal.h
+++ b/platform/linux-generic/include/odp_buffer_internal.h
@@ -30,7 +30,7 @@ extern "C" {
#include <odp/api/thread.h>
#include <odp/api/event.h>
#include <odp_forward_typedefs_internal.h>
-#include <odp_schedule_internal.h>
+#include <odp_schedule_if.h>
#define ODP_BITSIZE(x) \
((x) <= 2 ? 1 : \
diff --git a/platform/linux-generic/include/odp_queue_internal.h b/platform/linux-generic/include/odp_queue_internal.h
index 614e7acd0..8f8e5617d 100644
--- a/platform/linux-generic/include/odp_queue_internal.h
+++ b/platform/linux-generic/include/odp_queue_internal.h
@@ -20,7 +20,7 @@ extern "C" {
#include <odp/api/queue.h>
#include <odp_forward_typedefs_internal.h>
-#include <odp_schedule_internal.h>
+#include <odp_schedule_if.h>
#include <odp_buffer_internal.h>
#include <odp_align_internal.h>
#include <odp/api/packet_io.h>
diff --git a/platform/linux-generic/include/odp_schedule_internal.h b/platform/linux-generic/include/odp_schedule_if.h
index 7436f5a38..b875f6cf7 100644
--- a/platform/linux-generic/include/odp_schedule_internal.h
+++ b/platform/linux-generic/include/odp_schedule_if.h
@@ -4,10 +4,8 @@
* SPDX-License-Identifier: BSD-3-Clause
*/
-
-
-#ifndef ODP_SCHEDULE_INTERNAL_H_
-#define ODP_SCHEDULE_INTERNAL_H_
+#ifndef ODP_SCHEDULE_IF_H_
+#define ODP_SCHEDULE_IF_H_
#ifdef __cplusplus
extern "C" {
@@ -32,7 +30,6 @@ typedef int (*schedule_init_queue_fn_t)(uint32_t queue_index);
typedef void (*schedule_destroy_queue_fn_t)(uint32_t queue_index);
typedef int (*schedule_sched_queue_fn_t)(uint32_t queue_index);
-
typedef struct schedule_fn_t {
schedule_pktio_start_fn_t pktio_start;
schedule_thr_add_fn_t thr_add;