]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
lib: addr_map: Move address_map[] type to the header file
authorBin Meng <bmeng.cn@gmail.com>
Thu, 25 Feb 2021 09:22:33 +0000 (17:22 +0800)
committerPriyanka Jain <priyanka.jain@nxp.com>
Fri, 5 Mar 2021 04:55:43 +0000 (10:25 +0530)
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 <bmeng.cn@gmail.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Priyanka Jain <priyanka.jain@nxp.com>
include/addr_map.h
lib/addr_map.c

index 85e737d0f61e4f3b007792f53cd4f88198af5f3b..55d3a6a165acb9afb2f3ec7843ab9f8d7ce859c1 100644 (file)
@@ -8,6 +8,14 @@
 
 #include <asm/types.h>
 
+struct addrmap {
+       phys_addr_t paddr;
+       phys_size_t size;
+       unsigned long vaddr;
+};
+
+extern struct addrmap address_map[CONFIG_SYS_NUM_ADDR_MAP];
+
 phys_addr_t addrmap_virt_to_phys(void *vaddr);
 void *addrmap_phys_to_virt(phys_addr_t paddr);
 void addrmap_set_entry(unsigned long vaddr, phys_addr_t paddr,
index 09771f3a5a5933bb8b3cda940d80d3a099c9861c..fb2ef400078c2d18884f0a87fcdcce533db16346 100644 (file)
@@ -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)
 {