Skip to content

Commit 18818c1

Browse files
Simon Maurermmahadevan108
Simon Maurer
authored andcommittedNov 8, 2024
openamp: resource table: fixes resource table for ram_console section
in commit 1cd37f2 the global ram console buffer was replaced with a pointer. This didn't work with the OpenAMP resource table anymore (zephyrproject-rtos#75656). Signed-off-by: Simon Maurer <mail@maurer.systems>
1 parent 02c8a5a commit 18818c1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎lib/open-amp/resource_table.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
#include <zephyr/kernel.h>
3030
#include <resource_table.h>
3131

32-
extern char ram_console[];
32+
extern char ram_console_buf[];
3333

3434
#define __resource Z_GENERIC_SECTION(.resource_table)
3535

@@ -68,7 +68,7 @@ static struct fw_resource_table __resource resource_table = {
6868
#if defined(CONFIG_RAM_CONSOLE)
6969
.cm_trace = {
7070
RSC_TRACE,
71-
(uint32_t)ram_console, CONFIG_RAM_CONSOLE_BUFFER_SIZE, 0,
71+
(uint32_t)ram_console_buf, CONFIG_RAM_CONSOLE_BUFFER_SIZE, 0,
7272
"Zephyr_log",
7373
},
7474
#endif

0 commit comments

Comments
 (0)
Please sign in to comment.