aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorManish V Badarkhe <Manish.Badarkhe@arm.com>2020-07-15 04:27:57 +0100
committerManish V Badarkhe <manish.badarkhe@arm.com>2020-07-23 02:11:05 +0000
commita4ff9d7e1ee4ccd66824c1e4be08727012c99123 (patch)
tree60e8acf5ac6a4f20b89a6cd421f2bd2d1dc4cb27 /include
parenta249a9d9e7b4a48c4080abad02b748479dafef52 (diff)
downloadarm-trusted-firmware-a4ff9d7e1ee4ccd66824c1e4be08727012c99123.tar.gz
lib/fconf: Update data type of config max size
Update the data type of the member 'config_max_size' present in the structure 'dyn_cfg_dtb_info_t' to uint32_t. This change is being done so that dyn_cfg_dtb_info_t and image_info structure should use same data type for maximum size. Change-Id: I9b5927a47eb8351bbf3664b8b1e047ae1ae5a260 Signed-off-by: Manish V Badarkhe <Manish.Badarkhe@arm.com>
Diffstat (limited to 'include')
-rw-r--r--include/lib/fconf/fconf_dyn_cfg_getter.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/lib/fconf/fconf_dyn_cfg_getter.h b/include/lib/fconf/fconf_dyn_cfg_getter.h
index 9816d6fe0..6e0e7fd59 100644
--- a/include/lib/fconf/fconf_dyn_cfg_getter.h
+++ b/include/lib/fconf/fconf_dyn_cfg_getter.h
@@ -14,7 +14,7 @@
struct dyn_cfg_dtb_info_t {
uintptr_t config_addr;
- size_t config_max_size;
+ uint32_t config_max_size;
unsigned int config_id;
};