Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion arch/riscv/core/vector_table.ld
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,9 @@
*/

#if LINKER_ZEPHYR_FINAL && defined(CONFIG_ISR_TABLES_LOCAL_DECLARATION)
INCLUDE isr_tables_vt.ld
KEEP(*(.vectors.__start))
. = ALIGN(CONFIG_ARCH_IRQ_VECTOR_TABLE_ALIGN);
INCLUDE isr_tables_vt.ld
#else
KEEP(*(.vectors.*))
#endif
4 changes: 2 additions & 2 deletions kernel/work.c
Original file line number Diff line number Diff line change
Expand Up @@ -606,8 +606,8 @@ bool k_work_cancel_sync(struct k_work *work,
static void work_timeout_handler(struct _timeout *record)
{
struct k_work_q *queue = CONTAINER_OF(record, struct k_work_q, work_timeout_record);
struct k_work *work;
k_work_handler_t handler;
struct k_work *work = NULL;
k_work_handler_t handler = NULL;
const char *name;
const char *space = " ";

Expand Down