From 0ca2a9ed4c7a655c802d39f792dbdc0100de0da5 Mon Sep 17 00:00:00 2001 From: Anas Nashif Date: Fri, 13 Jun 2025 07:51:34 -0400 Subject: [PATCH] arch: x86: multiboot: add a break in default switch case Add missing break in switch statement. Signed-off-by: Anas Nashif --- arch/x86/core/multiboot.c | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/x86/core/multiboot.c b/arch/x86/core/multiboot.c index 06d03c7b807..a7afd42444b 100644 --- a/arch/x86/core/multiboot.c +++ b/arch/x86/core/multiboot.c @@ -100,6 +100,7 @@ void z_multiboot_init(struct multiboot_info *info_pa) break; default: type = X86_MEMMAP_ENTRY_UNKNOWN; + break; } x86_memmap[index].type = type;