From c5101e1ae1d7ae281fa94167c691f6d848a25041 Mon Sep 17 00:00:00 2001 From: Daniel Walker <dwalker@codeaurora.org> Date: Mon, 11 Oct 2010 15:46:52 -0700 Subject: [PATCH] msm: fix compile failure on struct membank node member In commit 8759b838447ac76b4ed89da9616993e3d008970c "ARM: Remove DISCONTIGMEM support", it removed this "node" member which cased the following compile failure in mach-msm, linux/arch/arm/mach-msm/board-halibut.c: In function 'halibut_fixup': linux/arch/arm/mach-msm/board-halibut.c:86: error: 'struct membank' has no member named 'node' linux/arch/arm/mach-msm/board-halibut.c:86: error: implicit declaration of function 'PHYS_TO_NID' I've removed the access to the node member which corrects the compile failure. Signed-off-by: Daniel Walker <dwalker@codeaurora.org> --- arch/arm/mach-msm/board-halibut.c | 1 - 1 file changed, 1 deletion(-) diff --git a/arch/arm/mach-msm/board-halibut.c b/arch/arm/mach-msm/board-halibut.c index 59edecbe126cc..75dabb16c8023 100644 --- a/arch/arm/mach-msm/board-halibut.c +++ b/arch/arm/mach-msm/board-halibut.c @@ -83,7 +83,6 @@ static void __init halibut_fixup(struct machine_desc *desc, struct tag *tags, { mi->nr_banks=1; mi->bank[0].start = PHYS_OFFSET; - mi->bank[0].node = PHYS_TO_NID(PHYS_OFFSET); mi->bank[0].size = (101*1024*1024); } -- 2.39.5