Browse Source

arch: x86: multiboot: add a break in default switch case

Add missing break in switch statement.

Signed-off-by: Anas Nashif <anas.nashif@intel.com>
pull/89798/head
Anas Nashif 4 weeks ago
parent
commit
0ca2a9ed4c
  1. 1
      arch/x86/core/multiboot.c

1
arch/x86/core/multiboot.c

@ -100,6 +100,7 @@ void z_multiboot_init(struct multiboot_info *info_pa) @@ -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;

Loading…
Cancel
Save