arch: arm: arm_core_mpu: Fixed the build when coverage was enabled.

The build was broken when CONFIG_COVERAGE was enabled.

Signed-off-by: Adithya Baglody <adithya.nagaraj.baglody@intel.com>
This commit is contained in:
Adithya Baglody 2019-02-21 14:07:22 +05:30 committed by Anas Nashif
parent 5a0fec4c26
commit b8ad89ebad
1 changed files with 1 additions and 1 deletions

View File

@ -68,7 +68,7 @@ void _arch_configure_static_mpu_regions(void)
#if defined(CONFIG_COVERAGE_GCOV) && defined(CONFIG_USERSPACE)
{
.start = (u32_t)&__gcov_bss_start,
.size = (u32_t)&__gcov_bss_size
.size = (u32_t)&__gcov_bss_size,
.attr = K_MEM_PARTITION_P_RW_U_RW,
},
#endif /* CONFIG_COVERAGE_GCOV && CONFIG_USERSPACE */