
Openrisc's private vmlinux.h duplicates a few definitions that are already provided by asm-generic/sections.h. The former is used by setup.c only, while the latter is already used everywhere else. Convert setup.c to use the generic version: - Include <asm/sections.h>, - Remove the (slightly different) extern declarations, - Remove the no longer needed address-of ('&') operators. Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org> Signed-off-by: Jonas Bonn <jonas@southpole.se>
12 lines
205 B
C
12 lines
205 B
C
#ifndef __OPENRISC_VMLINUX_H_
|
|
#define __OPENRISC_VMLINUX_H_
|
|
|
|
#ifdef CONFIG_BLK_DEV_INITRD
|
|
extern char __initrd_start, __initrd_end;
|
|
extern char __initramfs_start;
|
|
#endif
|
|
|
|
extern u32 __dtb_start[];
|
|
|
|
#endif
|