summaryrefslogtreecommitdiff
path: root/lib/addr_map.c
diff options
context:
space:
mode:
authorBin Meng <[email protected]>2021-02-25 17:22:33 +0800
committerPriyanka Jain <[email protected]>2021-03-05 10:25:43 +0530
commitb56156331693856aceb76e6aa3d61e58f7ae8dd4 (patch)
tree98a15ac92a8555eacefb3115126ce0646aafecef /lib/addr_map.c
parentc40131acc030ac9b1bf0704306aa18295d44ff2a (diff)
lib: addr_map: Move address_map[] type to the header file
At present address_map[] is static and its type is unknown to external modules. In preparation to create a command to list its contents, this patch moves its type definition and declaration to the header file. Signed-off-by: Bin Meng <[email protected]> Reviewed-by: Simon Glass <[email protected]> Reviewed-by: Priyanka Jain <[email protected]>
Diffstat (limited to 'lib/addr_map.c')
-rw-r--r--lib/addr_map.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/lib/addr_map.c b/lib/addr_map.c
index 09771f3a5a5..fb2ef400078 100644
--- a/lib/addr_map.c
+++ b/lib/addr_map.c
@@ -6,11 +6,7 @@
#include <common.h>
#include <addr_map.h>
-static struct {
- phys_addr_t paddr;
- phys_size_t size;
- unsigned long vaddr;
-} address_map[CONFIG_SYS_NUM_ADDR_MAP];
+struct addrmap address_map[CONFIG_SYS_NUM_ADDR_MAP];
phys_addr_t addrmap_virt_to_phys(void * vaddr)
{