mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-13 09:36:51 +07:00
05eacfd00c
The linker script defines some variables which are declared either with type char[] in include/asm-generic/sections.h or with a meaningless integer type in arch/um/include/asm/sections.h. Fix this inconsistency by declaring every variable char[]. Signed-off-by: Nicolas Iooss <nicolas.iooss_linux@m4x.org> Signed-off-by: Richard Weinberger <richard@nod.at>
10 lines
180 B
C
10 lines
180 B
C
#ifndef __UM_SECTIONS_H
|
|
#define __UM_SECTIONS_H
|
|
|
|
#include <asm-generic/sections.h>
|
|
|
|
extern char __binary_start[];
|
|
extern char __syscall_stub_start[], __syscall_stub_end[];
|
|
|
|
#endif
|