mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-15 17:14:21 +00:00
Merge "fix(memmap): fix footprint free space calculation" into integration
This commit is contained in:
commit
e12b765e28
1 changed files with 2 additions and 2 deletions
|
@ -1,5 +1,5 @@
|
|||
#
|
||||
# Copyright (c) 2023, Arm Limited. All rights reserved.
|
||||
# Copyright (c) 2023-2024, Arm Limited. All rights reserved.
|
||||
#
|
||||
# SPDX-License-Identifier: BSD-3-Clause
|
||||
#
|
||||
|
@ -57,7 +57,7 @@ class TfaMapParser:
|
|||
|
||||
if "start" and "length" and "end" in memory_layout[region]:
|
||||
memory_layout[region]["limit"] = (
|
||||
memory_layout[region]["end"]
|
||||
memory_layout[region]["start"]
|
||||
+ memory_layout[region]["length"]
|
||||
)
|
||||
memory_layout[region]["free"] = (
|
||||
|
|
Loading…
Add table
Reference in a new issue