summaryrefslogtreecommitdiffstats
path: root/arch/cris/kernel
diff options
context:
space:
mode:
authorSergey Senozhatsky <sergey.senozhatsky.work@gmail.com>2018-01-04 21:47:44 -0500
committerJesper Nilsson <jesper@jni.nu>2018-01-13 16:42:09 -0500
commitfd989db807a00d552ebf29d8ffb20c2ef04742da (patch)
tree3572aae733674dc76e54375b4dde22425e9923ea /arch/cris/kernel
parentbebc6082da0a9f5d47a1ea2edc099bf671058bd4 (diff)
cris: Fix conflicting types for _etext, _edata, _end
Include asm/sections.h header which contains the correct types for _etext, _edata and _end - char arrays. Signed-off-by: Sergey Senozhatsky <sergey.senozhatsky@gmail.com> Signed-off-by: Jesper Nilsson <jesper.nilsson@axis.com>
Diffstat (limited to 'arch/cris/kernel')
-rw-r--r--arch/cris/kernel/setup.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/cris/kernel/setup.c b/arch/cris/kernel/setup.c
index 524d47501a23..1b61a7207afb 100644
--- a/arch/cris/kernel/setup.c
+++ b/arch/cris/kernel/setup.c
@@ -24,6 +24,7 @@
24#include <linux/of_fdt.h> 24#include <linux/of_fdt.h>
25#include <asm/setup.h> 25#include <asm/setup.h>
26#include <arch/system.h> 26#include <arch/system.h>
27#include <asm/sections.h>
27 28
28/* 29/*
29 * Setup options 30 * Setup options
@@ -31,7 +32,6 @@
31struct screen_info screen_info; 32struct screen_info screen_info;
32 33
33extern int root_mountflags; 34extern int root_mountflags;
34extern char _etext, _edata, _end;
35 35
36char __initdata cris_command_line[COMMAND_LINE_SIZE] = { 0, }; 36char __initdata cris_command_line[COMMAND_LINE_SIZE] = { 0, };
37 37