debug: debug_stream: Couple of debug print and comment typo fixes

Signed-off-by: Jyri Sarha <jyri.sarha@linux.intel.com>
This commit is contained in:
Jyri Sarha 2024-09-06 09:15:19 +03:00 committed by Kai Vehmanen
parent 8884a5dae7
commit 7dd2d7fca0
2 changed files with 2 additions and 2 deletions

View File

@ -141,7 +141,7 @@ static int debug_stream_slot_init(void)
buf->next_seqno = 0;
buf->w_ptr = 0;
k_mutex_init(&cpu_mutex[i].m);
/* The core specific mutexes are now .dss which is uncached so the
/* The core specific mutexes are now .bss which is uncached so the
* following line is commented out. However, since the mutexes are
* core specific there should be nothing preventing from having them
* in cached memory.

View File

@ -76,7 +76,7 @@ static uint32_t thread_info_get_cycles(void *tid, k_thread_runtime_stats_t *thre
int i;
if (ud->thread_count >= ARRAY_SIZE(ud->active_threads)) {
LOG_WRN("Thread could exceeds tha max threads %u >= %u",
LOG_WRN("Thread count exceeds the max threads %u >= %u",
ud->thread_count, ARRAY_SIZE(ud->active_threads));
return 0;
}