elfcorehdr_addr, elfcorehdr_size);
 }
 
-static phys_addr_t cap_mem_addr;
-static phys_addr_t cap_mem_size;
+static unsigned long chosen_node_offset = -FDT_ERR_NOTFOUND;
 
 /**
  * early_init_dt_check_for_usable_mem_range - Decode usable memory range
  * location from flat tree
- * @node: reference to node containing usable memory range location ('chosen')
  */
-static void __init early_init_dt_check_for_usable_mem_range(unsigned long node)
+static void __init early_init_dt_check_for_usable_mem_range(void)
 {
        const __be32 *prop;
        int len;
+       phys_addr_t cap_mem_addr;
+       phys_addr_t cap_mem_size;
+       unsigned long node = chosen_node_offset;
+
+       if ((long)node < 0)
+               return;
 
        pr_debug("Looking for usable-memory-range property... ");
 
 
        pr_debug("cap_mem_start=%pa cap_mem_size=%pa\n", &cap_mem_addr,
                 &cap_mem_size);
+
+       memblock_cap_memory_range(cap_mem_addr, cap_mem_size);
 }
 
 #ifdef CONFIG_SERIAL_EARLYCON
            (strcmp(uname, "chosen") != 0 && strcmp(uname, "chosen@0") != 0))
                return 0;
 
+       chosen_node_offset = node;
+
        early_init_dt_check_for_initrd(node);
        early_init_dt_check_for_elfcorehdr(node);
-       early_init_dt_check_for_usable_mem_range(node);
 
        /* Retrieve command line */
        p = of_get_flat_dt_prop(node, "bootargs", &l);
        of_scan_flat_dt(early_init_dt_scan_memory, NULL);
 
        /* Handle linux,usable-memory-range property */
-       memblock_cap_memory_range(cap_mem_addr, cap_mem_size);
+       early_init_dt_check_for_usable_mem_range();
 }
 
 bool __init early_init_dt_scan(void *params)