]> git.karo-electronics.de Git - linux-beck.git/commitdiff
mips: convert fdt pointers to opaque pointers
authorRob Herring <robh@kernel.org>
Mon, 31 Mar 2014 20:13:07 +0000 (15:13 -0500)
committerRob Herring <robh@kernel.org>
Wed, 30 Apr 2014 05:59:13 +0000 (00:59 -0500)
The architecture code does not need to access the internals of the FDT
blob directly, so make the pointers to it void * and use char arrays
for section variables.

Signed-off-by: Rob Herring <robh@kernel.org>
Cc: Ralf Baechle <ralf@linux-mips.org>
Tested-by: Grant Likely <grant.likely@linaro.org>
arch/mips/include/asm/mips-boards/generic.h
arch/mips/include/asm/prom.h
arch/mips/kernel/prom.c
arch/mips/lantiq/prom.c
arch/mips/lantiq/prom.h
arch/mips/mti-sead3/sead3-setup.c
arch/mips/ralink/of.c

index 48616816bcbc9073b3184e83a6276dad687d6feb..b969491aa98dbae81de4481f7038f0a5855e91df 100644 (file)
@@ -67,9 +67,7 @@
 
 extern int mips_revision_sconid;
 
-#ifdef CONFIG_OF
-extern struct boot_param_header __dtb_start;
-#endif
+extern char __dtb_start[];
 
 #ifdef CONFIG_PCI
 extern void mips_pcibios_init(void);
index ccd2b75f152cce2b1715d60df51af7b83020c1d1..a9494c0141fbce811027c96b9b7c1455ea6b9635 100644 (file)
@@ -21,13 +21,13 @@ extern void device_tree_init(void);
 
 struct boot_param_header;
 
-extern void __dt_setup_arch(struct boot_param_header *bph);
+extern void __dt_setup_arch(void *bph);
 
 #define dt_setup_arch(sym)                                             \
 ({                                                                     \
-       extern struct boot_param_header __dtb_##sym##_begin;            \
+       extern char __dtb_##sym##_begin[];                              \
                                                                        \
-       __dt_setup_arch(&__dtb_##sym##_begin);                          \
+       __dt_setup_arch(__dtb_##sym##_begin);                           \
 })
 
 #else /* CONFIG_OF */
index 3c3b0df8f48d8916c184ffdb6d4c01e0a48aa666..5d39bb85bf35a76d7e31f9dad47aecb909ae30fb 100644 (file)
@@ -47,7 +47,7 @@ void * __init early_init_dt_alloc_memory_arch(u64 size, u64 align)
        return __alloc_bootmem(size, align, __pa(MAX_DMA_ADDRESS));
 }
 
-void __init __dt_setup_arch(struct boot_param_header *bph)
+void __init __dt_setup_arch(void *bph)
 {
        if (!early_init_dt_scan(bph))
                return;
index cdea687ad490b0727e88459b3330ca5f15cdfb75..7447d322d14ef62aabe8b98982f60c0a872dbee6 100644 (file)
@@ -71,7 +71,7 @@ void __init plat_mem_setup(void)
         * Load the builtin devicetree. This causes the chosen node to be
         * parsed resulting in our memory appearing
         */
-       __dt_setup_arch(&__dtb_start);
+       __dt_setup_arch(__dtb_start);
 }
 
 void __init device_tree_init(void)
index 8e07b5f28ef194c04667f4e5b3fa99893bf433c1..69a4c582338d0a68b2010d5d0367e0518da3fb92 100644 (file)
@@ -26,6 +26,6 @@ struct ltq_soc_info {
 extern void ltq_soc_detect(struct ltq_soc_info *i);
 extern void ltq_soc_init(void);
 
-extern struct boot_param_header __dtb_start;
+extern char __dtb_start[];
 
 #endif
index bf7fe48bf2f927dfef969233658968bfdcf79bbc..e43f4801a2455d175cc43695e8020138449a5195 100644 (file)
@@ -69,17 +69,17 @@ static void __init parse_memsize_param(void)
        if (!memsize)
                return;
 
-       offset = fdt_path_offset(&__dtb_start, "/memory");
+       offset = fdt_path_offset(__dtb_start, "/memory");
        if (offset > 0) {
                uint64_t new_value;
                /*
                 * reg contains 2 32-bits BE values, offset and size. We just
                 * want to replace the size value without affecting the offset
                 */
-               prop_value = fdt_getprop(&__dtb_start, offset, "reg", &prop_len);
+               prop_value = fdt_getprop(__dtb_start, offset, "reg", &prop_len);
                new_value = be64_to_cpu(*prop_value);
                new_value =  (new_value & ~0xffffffffllu) | memsize;
-               fdt_setprop_inplace_u64(&__dtb_start, offset, "reg", new_value);
+               fdt_setprop_inplace_u64(__dtb_start, offset, "reg", new_value);
        }
 }
 
@@ -92,7 +92,7 @@ void __init plat_mem_setup(void)
         * Load the builtin devicetree. This causes the chosen node to be
         * parsed resulting in our memory appearing
         */
-       __dt_setup_arch(&__dtb_start);
+       __dt_setup_arch(__dtb_start);
 }
 
 void __init device_tree_init(void)
index 0170d829d073498a482c7c33e4189c37965d8fb6..91d7060d5aeaf03d46049094631a8678b75179bb 100644 (file)
@@ -28,7 +28,7 @@
 __iomem void *rt_sysc_membase;
 __iomem void *rt_memc_membase;
 
-extern struct boot_param_header __dtb_start;
+extern char __dtb_start[];
 
 __iomem void *plat_of_remap_node(const char *node)
 {
@@ -63,7 +63,7 @@ void __init plat_mem_setup(void)
         * Load the builtin devicetree. This causes the chosen node to be
         * parsed resulting in our memory appearing
         */
-       __dt_setup_arch(&__dtb_start);
+       __dt_setup_arch(__dtb_start);
 
        if (soc_info.mem_size)
                add_memory_region(soc_info.mem_base, soc_info.mem_size * SZ_1M,