mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-23 04:48:14 +00:00
feat(fvp): add stub platform function to get ACPI table region size
Introduces a stub platform function for FVP to retrieve the ACPI table region size. Change-Id: Icbf1ae0cb89c393502de2c2f4f66df6b510e6b81 Signed-off-by: Manish V Badarkhe <Manish.Badarkhe@arm.com>
This commit is contained in:
parent
7792bdbdf9
commit
5d377555e8
1 changed files with 6 additions and 1 deletions
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (c) 2022, Arm Limited. All rights reserved.
|
||||
* Copyright (c) 2022-2025, Arm Limited. All rights reserved.
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-3-Clause
|
||||
*/
|
||||
|
@ -33,3 +33,8 @@ uint64_t plat_drtm_get_tcb_hash_table_size(void)
|
|||
{
|
||||
return 0ULL;
|
||||
}
|
||||
|
||||
uint64_t plat_drtm_get_acpi_tables_region_size(void)
|
||||
{
|
||||
return 0ULL;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue