diff options
author | Sudip Mukherjee <sudipm.mukherjee@gmail.com> | 2016-01-14 15:16:47 -0800 |
---|---|---|
committer | Sasha Levin <sasha.levin@oracle.com> | 2016-02-03 16:23:16 -0500 |
commit | a5254ac06b9aaf6ef99bb260fe713f6a64371353 (patch) | |
tree | c1df83e0b0d500230c8151a77b24340d1f328923 /arch/m32r | |
parent | c5882812d2e1ab7db5bc71a1bca90b3a2d89dedd (diff) | |
download | lwn-a5254ac06b9aaf6ef99bb260fe713f6a64371353.tar.gz lwn-a5254ac06b9aaf6ef99bb260fe713f6a64371353.zip |
m32r: fix m32104ut_defconfig build fail
[ Upstream commit 601f1db653217f205ffa5fb33514b4e1711e56d1 ]
The build of m32104ut_defconfig for m32r arch was failing for long long
time with the error:
ERROR: "memory_start" [fs/udf/udf.ko] undefined!
ERROR: "memory_end" [fs/udf/udf.ko] undefined!
ERROR: "memory_end" [drivers/scsi/sg.ko] undefined!
ERROR: "memory_start" [drivers/scsi/sg.ko] undefined!
ERROR: "memory_end" [drivers/i2c/i2c-dev.ko] undefined!
ERROR: "memory_start" [drivers/i2c/i2c-dev.ko] undefined!
As done in other architectures export the symbols to fix the error.
Reported-by: Fengguang Wu <fengguang.wu@intel.com>
Signed-off-by: Sudip Mukherjee <sudip@vectorindia.org>
Cc: <stable@vger.kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Sasha Levin <sasha.levin@oracle.com>
Diffstat (limited to 'arch/m32r')
-rw-r--r-- | arch/m32r/kernel/setup.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/m32r/kernel/setup.c b/arch/m32r/kernel/setup.c index 0392112a5d70..a5ecef7188ba 100644 --- a/arch/m32r/kernel/setup.c +++ b/arch/m32r/kernel/setup.c @@ -81,7 +81,10 @@ static struct resource code_resource = { }; unsigned long memory_start; +EXPORT_SYMBOL(memory_start); + unsigned long memory_end; +EXPORT_SYMBOL(memory_end); void __init setup_arch(char **); int get_cpuinfo(char *); |