Skip to content

Commit 727e107

Browse files
Examples: minor comment update in Fault example for Cortex-M7 (AVH) (#134)
1 parent 8f18397 commit 727e107

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Examples/Fault/FVP_MPS2_Cortex-M7/ARM_FaultTrigger.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2023 Arm Limited. All rights reserved.
2+
* Copyright (c) 2023-2025 Arm Limited. All rights reserved.
33
*
44
* SPDX-License-Identifier: Apache-2.0
55
*
@@ -32,7 +32,7 @@ void ARM_FaultTrigger (uint32_t fault_id) {
3232
void (*ptr_func) (void);
3333

3434
switch (fault_id) {
35-
case ARM_FAULT_ID_MEM_DATA: // Trigger Non-Secure MemManage fault - data access
35+
case ARM_FAULT_ID_MEM_DATA: // Trigger MemManage fault - data access
3636
val = *((uint32_t *)0x20000000); // Read from address not allowed by the MPU (non-privileged access not allowed)
3737
break;
3838

0 commit comments

Comments
 (0)