x86: mmu: add missing break statement in flags_to_entry function
Add missing break in switch statement. Signed-off-by: Anas Nashif <anas.nashif@intel.com>
This commit is contained in:
parent
0ca2a9ed4c
commit
9dc30f8dec
1 changed files with 1 additions and 0 deletions
|
@ -1267,6 +1267,7 @@ static pentry_t flags_to_entry(uint32_t flags)
|
|||
break;
|
||||
default:
|
||||
__ASSERT(false, "bad memory mapping flags 0x%x", flags);
|
||||
break;
|
||||
}
|
||||
|
||||
if ((flags & K_MEM_PERM_RW) != 0U) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue