Skip to content

Commit 98ba381

Browse files
committed
debug-stream: update to the latest Zephyr PR version
The latest version of zephyrproject-rtos/zephyr#103449 has changed the name of set_exception_dump_hook() to arch_exception_set_dump_hook(). The PR is now merged, so we should update the function name. Signed-off-by: Guennadi Liakhovetski <guennadi.liakhovetski@linux.intel.com>
1 parent 04b2d16 commit 98ba381

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/debug/debug_stream/debug_stream_text_msg.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ static void ds_exception_dump(const char *format, va_list args)
130130

131131
static int init_exception_dump_hook(void)
132132
{
133-
set_exception_dump_hook(ds_exception_dump, ds_exception_drain);
133+
arch_exception_set_dump_hook(ds_exception_dump, ds_exception_drain);
134134
LOG_INF("exception_dump_hook set");
135135
return 0;
136136
}

0 commit comments

Comments
 (0)