aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorSaurabh Gorecha <sgorecha@codeaurora.org>2020-10-15 00:05:36 +0530
committerSaurabh Gorecha <sgorecha@codeaurora.org>2020-10-16 02:23:35 +0530
commite0caf8f57ce4c7e16f1b72b19265748647f9744e (patch)
tree6b51ad4faba1a2d193a663941538f212e95591bb /include
parent7ad39818b184850d263008e7d36ba16adf72a669 (diff)
downloadtrusted-firmware-a-e0caf8f57ce4c7e16f1b72b19265748647f9744e.tar.gz
Update in coreboot_get_memory_type API to include size as well
Change-Id: I3f563cffd58b0591b433c85c0ff6b71e486eb2c8 Signed-off-by: Saurabh Gorecha <sgorecha@codeaurora.org>
Diffstat (limited to 'include')
-rw-r--r--include/lib/coreboot.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/lib/coreboot.h b/include/lib/coreboot.h
index dda3173a26..0aa65791dd 100644
--- a/include/lib/coreboot.h
+++ b/include/lib/coreboot.h
@@ -39,7 +39,7 @@ typedef enum {
CB_MEM_TABLE = 16,
} coreboot_memory_t;
-coreboot_memory_t coreboot_get_memory_type(uintptr_t address);
+coreboot_memory_t coreboot_get_memory_type(uintptr_t start, size_t size);
void coreboot_table_setup(void *base);
#endif /* COREBOOT_H */