arm_mpu_v7m: add missing break statement in default case of writable check

add missing break statement in default case of writable check to satisfy
sca.

Signed-off-by: Anas Nashif <anas.nashif@intel.com>
This commit is contained in:
Anas Nashif 2025-06-13 08:27:37 -04:00
commit ccc8947d16

View file

@ -224,6 +224,7 @@ typedef struct {
break; \
default: \
__is_writable__ = 0; \
break; \
} \
__is_writable__; \
})