From 34b190bf804639805fb958c637c365dd831916b7 Mon Sep 17 00:00:00 2001 From: Mikael Olsson Date: Mon, 12 Feb 2024 13:14:18 +0100 Subject: Update kernel rpmsg header path in message handler The source files for the Linux kernel driver has been restructured and the common rpmsg header file has been renamed and moved to an include folder. The message handler openamp application has been updated accordingly to use the new header file. Change-Id: If1c4f5f80dbd87ee1b14103620b1183f6a3e3826 Signed-off-by: Mikael Olsson --- applications/message_handler_openamp/CMakeLists.txt | 4 ++-- applications/message_handler_openamp/message_handler.hpp | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/applications/message_handler_openamp/CMakeLists.txt b/applications/message_handler_openamp/CMakeLists.txt index 00e7995..f60e376 100644 --- a/applications/message_handler_openamp/CMakeLists.txt +++ b/applications/message_handler_openamp/CMakeLists.txt @@ -1,5 +1,5 @@ # -# SPDX-FileCopyrightText: Copyright 2022-2023 Arm Limited and/or its affiliates +# SPDX-FileCopyrightText: Copyright 2022-2024 Arm Limited and/or its affiliates # SPDX-License-Identifier: Apache-2.0 # # Licensed under the Apache License, Version 2.0 (the License); you may @@ -66,7 +66,7 @@ ethosu_add_executable(message_handler_openamp openamp-freertos) target_include_directories(message_handler_openamp PRIVATE - ${LINUX_DRIVER_STACK_PATH}/kernel) + ${LINUX_DRIVER_STACK_PATH}/kernel/include) target_compile_definitions(message_handler_openamp PRIVATE $<$:REMOTEPROC_TRACE_BUFFER> diff --git a/applications/message_handler_openamp/message_handler.hpp b/applications/message_handler_openamp/message_handler.hpp index 86b7c4d..9461569 100644 --- a/applications/message_handler_openamp/message_handler.hpp +++ b/applications/message_handler_openamp/message_handler.hpp @@ -1,5 +1,5 @@ /* - * SPDX-FileCopyrightText: Copyright 2022-2023 Arm Limited and/or its affiliates + * SPDX-FileCopyrightText: Copyright 2022-2024 Arm Limited and/or its affiliates * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the License); you may @@ -21,8 +21,8 @@ * Includes *****************************************************************************/ -#include #include +#include #include "queue.hpp" #include "remoteproc.hpp" -- cgit v1.2.1