Skip to content

Commit 7dd2d7f

Browse files
Jyri Sarhakv2019i
authored andcommitted
debug: debug_stream: Couple of debug print and comment typo fixes
Signed-off-by: Jyri Sarha <jyri.sarha@linux.intel.com>
1 parent 8884a5d commit 7dd2d7f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/debug/debug_stream/debug_stream_slot.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ static int debug_stream_slot_init(void)
141141
buf->next_seqno = 0;
142142
buf->w_ptr = 0;
143143
k_mutex_init(&cpu_mutex[i].m);
144-
/* The core specific mutexes are now .dss which is uncached so the
144+
/* The core specific mutexes are now .bss which is uncached so the
145145
* following line is commented out. However, since the mutexes are
146146
* core specific there should be nothing preventing from having them
147147
* in cached memory.

src/debug/debug_stream/debug_stream_thread_info.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ static uint32_t thread_info_get_cycles(void *tid, k_thread_runtime_stats_t *thre
7676
int i;
7777

7878
if (ud->thread_count >= ARRAY_SIZE(ud->active_threads)) {
79-
LOG_WRN("Thread could exceeds tha max threads %u >= %u",
79+
LOG_WRN("Thread count exceeds the max threads %u >= %u",
8080
ud->thread_count, ARRAY_SIZE(ud->active_threads));
8181
return 0;
8282
}

0 commit comments

Comments
 (0)