diff --git a/services/std_svc/spm_mm/aarch64/spm_helpers.S b/services/std_svc/spm_mm/aarch64/spm_helpers.S index aa35811f1..2c3aaf7ae 100644 --- a/services/std_svc/spm_mm/aarch64/spm_helpers.S +++ b/services/std_svc/spm_mm/aarch64/spm_helpers.S @@ -1,11 +1,11 @@ /* - * Copyright (c) 2017, ARM Limited and Contributors. All rights reserved. + * Copyright (c) 2017-2019, ARM Limited and Contributors. All rights reserved. * * SPDX-License-Identifier: BSD-3-Clause */ #include -#include "../spm_private.h" +#include "../spm_mm_private.h" .global spm_secure_partition_enter .global spm_secure_partition_exit diff --git a/services/std_svc/spm_mm/spm_main.c b/services/std_svc/spm_mm/spm_main.c index 433e3351f..14c0038ba 100644 --- a/services/std_svc/spm_mm/spm_main.c +++ b/services/std_svc/spm_mm/spm_main.c @@ -22,7 +22,7 @@ #include #include -#include "spm_private.h" +#include "spm_mm_private.h" /******************************************************************************* * Secure Partition context information. diff --git a/services/std_svc/spm_mm/spm_private.h b/services/std_svc/spm_mm/spm_mm_private.h similarity index 92% rename from services/std_svc/spm_mm/spm_private.h rename to services/std_svc/spm_mm/spm_mm_private.h index ba94a4d08..45b4789ad 100644 --- a/services/std_svc/spm_mm/spm_private.h +++ b/services/std_svc/spm_mm/spm_mm_private.h @@ -1,11 +1,11 @@ /* - * Copyright (c) 2017-2018, ARM Limited and Contributors. All rights reserved. + * Copyright (c) 2017-2019, ARM Limited and Contributors. All rights reserved. * * SPDX-License-Identifier: BSD-3-Clause */ -#ifndef SPM_PRIVATE_H -#define SPM_PRIVATE_H +#ifndef SPM_MM_PRIVATE_H +#define SPM_MM_PRIVATE_H #include @@ -68,4 +68,4 @@ int spm_memory_attributes_set_smc_handler(sp_context_t *sp_ctx, #endif /* __ASSEMBLER__ */ -#endif /* SPM_PRIVATE_H */ +#endif /* SPM_MM_PRIVATE_H */ diff --git a/services/std_svc/spm_mm/spm_setup.c b/services/std_svc/spm_mm/spm_setup.c index 7d03eb588..2ef35b75f 100644 --- a/services/std_svc/spm_mm/spm_setup.c +++ b/services/std_svc/spm_mm/spm_setup.c @@ -18,7 +18,7 @@ #include #include -#include "spm_private.h" +#include "spm_mm_private.h" #include "spm_shim_private.h" /* Setup context of the Secure Partition */ diff --git a/services/std_svc/spm_mm/spm_xlat.c b/services/std_svc/spm_mm/spm_xlat.c index 0c2399c4f..45fc704c3 100644 --- a/services/std_svc/spm_mm/spm_xlat.c +++ b/services/std_svc/spm_mm/spm_xlat.c @@ -14,7 +14,7 @@ #include #include -#include "spm_private.h" +#include "spm_mm_private.h" #include "spm_shim_private.h" /* Place translation tables by default along with the ones used by BL31. */