diff options
author | James Cowgill <James.Cowgill@imgtec.com> | 2014-11-13 11:08:07 +0000 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2014-11-19 18:22:07 +0100 |
commit | 5829b0ecc584d15ae4eeabe69f2ab554bdec4689 (patch) | |
tree | 0caee22b32b4ebd68cf36bfcd81682e419338e14 /arch/mips/sgi-ip27 | |
parent | 21255dad9dffa4407cab866f5561cb9568f7f7d8 (diff) | |
download | linux-stable-5829b0ecc584d15ae4eeabe69f2ab554bdec4689.tar.gz linux-stable-5829b0ecc584d15ae4eeabe69f2ab554bdec4689.tar.bz2 linux-stable-5829b0ecc584d15ae4eeabe69f2ab554bdec4689.zip |
MIPS: IP27: Fix __node_distances undefined error
export the __node_distances symbol in the ip27 memory code to fix the
build error:
Building modules, stage 2.
MODPOST 311 modules
ERROR: "__node_distances" [drivers/block/nvme.ko] undefined!
scripts/Makefile.modpost:90: recipe for target '__modpost' failed
when building the kernel with:
CONFIG_SGI_IP27=y
CONFIG_BLK_DEV_NVME=m
Signed-off-by: James Cowgill <James.Cowgill@imgtec.com>
Cc: <stable@vger.kernel.org> # v3.15+
Reviewed-by: James Hogan <james.hogan@imgtec.com>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/sgi-ip27')
-rw-r--r-- | arch/mips/sgi-ip27/ip27-memory.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/mips/sgi-ip27/ip27-memory.c b/arch/mips/sgi-ip27/ip27-memory.c index a95c00f5fb96..a304bcc37e4f 100644 --- a/arch/mips/sgi-ip27/ip27-memory.c +++ b/arch/mips/sgi-ip27/ip27-memory.c @@ -107,6 +107,7 @@ static void router_recurse(klrou_t *router_a, klrou_t *router_b, int depth) } unsigned char __node_distances[MAX_COMPACT_NODES][MAX_COMPACT_NODES]; +EXPORT_SYMBOL(__node_distances); static int __init compute_node_distance(nasid_t nasid_a, nasid_t nasid_b) { |