diff --git a/services/std_svc/spm_mm/aarch64/spm_helpers.S b/services/std_svc/spm_mm/aarch64/spm_helpers.S index aa35811f14af8079c6f9ca36aa8c408d910ca490..2c3aaf7aedf01848fbe78818af1076ac029bf81e 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 433e3351f31c4ff8fe849ccb286b9a28cdc74cef..14c0038ba8a168fd955bf17fc421cb2a91042ac5 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 ba94a4d0884fd53f7fb496c689df4e318d14761b..45b4789ad1505fbdce83ad07ea0bc277cfe66859 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 7d03eb588d1250e8acff07ea5e556801cdbfc4b9..2ef35b75f4d18e1af3badcc3cd29614be20bd889 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 0c2399c4fb1d10f71ac8208dfaf3f2521cec22ec..45fc704c3965c0e57da846b78069ff9498a812f7 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. */