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 <mikael.olsson@arm.com>
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 <open-source-office@arm.com>
+# SPDX-FileCopyrightText: Copyright 2022-2024 Arm Limited and/or its affiliates <open-source-office@arm.com>
 # SPDX-License-Identifier: Apache-2.0
 #
 # Licensed under the Apache License, Version 2.0 (the License); you may
@@ -66,7 +66,7 @@
         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
     $<$<BOOL:${ENABLE_REMOTEPROC_TRACE_BUFFER}>: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 <open-source-office@arm.com>
+ * SPDX-FileCopyrightText: Copyright 2022-2024 Arm Limited and/or its affiliates <open-source-office@arm.com>
  * SPDX-License-Identifier: Apache-2.0
  *
  * Licensed under the Apache License, Version 2.0 (the License); you may
@@ -21,8 +21,8 @@
  * Includes
  *****************************************************************************/
 
-#include <ethosu_core_rpmsg.h>
 #include <mailbox.hpp>
+#include <rpmsg/ethosu_rpmsg.h>
 
 #include "queue.hpp"
 #include "remoteproc.hpp"