diff options
author | Florian Fainelli <f.fainelli@gmail.com> | 2018-11-06 01:54:27 +0300 |
---|---|---|
committer | Rob Herring <robh@kernel.org> | 2018-11-27 00:50:02 +0300 |
commit | b1ab95c63622e9d9bd0ce685e149034d393afc2e (patch) | |
tree | 35fd6535f0b8c6934fb86b86754d300c6d7898f8 /include/linux/initrd.h | |
parent | cd5e0fa0837c232f50a17390ce40a953c437a75f (diff) | |
download | linux-b1ab95c63622e9d9bd0ce685e149034d393afc2e.tar.xz |
arch: Make phys_initrd_start and phys_initrd_size global variables
Make phys_initrd_start and phys_initrd_size global variables declared in
init/do_mounts_initrd.c such that we can later have generic code in
drivers/of/fdt.c populate those variables for us.
This requires both the ARM and unicore32 implementations to be properly
guarded against CONFIG_BLK_DEV_INITRD, and also initialize the variables
to the expected default values (unicore32).
Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
Reviewed-by: Mike Rapoport <rppt@linux.ibm.com>
Signed-off-by: Rob Herring <robh@kernel.org>
Diffstat (limited to 'include/linux/initrd.h')
-rw-r--r-- | include/linux/initrd.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/linux/initrd.h b/include/linux/initrd.h index 84b423044088..14beaff9b445 100644 --- a/include/linux/initrd.h +++ b/include/linux/initrd.h @@ -21,4 +21,7 @@ extern int initrd_below_start_ok; extern unsigned long initrd_start, initrd_end; extern void free_initrd_mem(unsigned long, unsigned long); +extern phys_addr_t phys_initrd_start; +extern unsigned long phys_initrd_size; + extern unsigned int real_root_dev; |