samv7: include mpu.h in sam_boot_image.c to avoid compilation warnings

Header file mpu.h was not included although mpu_control() function
was used.

Signed-off-by: Michal Lenc <michallenc@seznam.cz>
This commit is contained in:
Michal Lenc 2023-08-31 11:47:30 +02:00 committed by Petro Karashchenko
parent 98e998b934
commit dc83526368

View File

@ -36,6 +36,10 @@
#include "arm_internal.h"
#include "barriers.h"
#ifdef CONFIG_ARM_MPU
# include "mpu.h"
#endif
#ifdef CONFIG_BOARDCTL_BOOT_IMAGE
/****************************************************************************