summaryrefslogtreecommitdiffstats
path: root/arch/powerpc/mm/numa.c
diff options
context:
space:
mode:
authorBenjamin Herrenschmidt2012-07-05 18:30:33 +0200
committerBenjamin Herrenschmidt2012-07-10 11:16:23 +0200
commitaa709f3bc92c6daaf177cd7e3446da2ef64426c6 (patch)
tree70dfc7f1a3524e54d1c4521fcee476a41659c417 /arch/powerpc/mm/numa.c
parentpowerpc: Fix build of some debug irq code (diff)
downloadkernel-qcow2-linux-aa709f3bc92c6daaf177cd7e3446da2ef64426c6.tar.gz
kernel-qcow2-linux-aa709f3bc92c6daaf177cd7e3446da2ef64426c6.tar.xz
kernel-qcow2-linux-aa709f3bc92c6daaf177cd7e3446da2ef64426c6.zip
powerpc/numa: Avoid stupid uninitialized warning from gcc
Newer gcc are being a bit blind here (it's pretty obvious we don't reach the code path using the array if we haven't initialized the pointer) but none of that is performance critical so let's just silence it. Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Diffstat (limited to 'arch/powerpc/mm/numa.c')
-rw-r--r--arch/powerpc/mm/numa.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/mm/numa.c b/arch/powerpc/mm/numa.c
index 6e8f677f5646..1e95556dc692 100644
--- a/arch/powerpc/mm/numa.c
+++ b/arch/powerpc/mm/numa.c
@@ -639,7 +639,7 @@ static void __init parse_drconf_memory(struct device_node *memory)
unsigned int n, rc, ranges, is_kexec_kdump = 0;
unsigned long lmb_size, base, size, sz;
int nid;
- struct assoc_arrays aa;
+ struct assoc_arrays aa = { .arrays = NULL };
n = of_get_drconf_memory(memory, &dm);
if (!n)