diff options
author | Kumar Gala <galak@kernel.crashing.org> | 2010-10-07 18:05:08 -0400 |
---|---|---|
committer | Kumar Gala <galak@kernel.crashing.org> | 2010-10-14 01:53:08 -0400 |
commit | 3c4b76449b4efc1a1cbd0cade09486bbc8b56401 (patch) | |
tree | 848342d00e03df17fc19966388e13188de9c94f7 /arch | |
parent | b6f9e595d27371c4f2157a294da3caa7aed5fe53 (diff) |
powerpc: Fix compile error with paca code on ppc64e
arch/powerpc/kernel/paca.c: In function 'allocate_lppacas':
arch/powerpc/kernel/paca.c:111:1: error: parameter name omitted
arch/powerpc/kernel/paca.c:111:1: error: parameter name omitted
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/powerpc/kernel/paca.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/kernel/paca.c b/arch/powerpc/kernel/paca.c index 1e068a46e6c3..cefc0df8f1e5 100644 --- a/arch/powerpc/kernel/paca.c +++ b/arch/powerpc/kernel/paca.c | |||
@@ -108,7 +108,7 @@ static void free_lppacas(void) | |||
108 | 108 | ||
109 | #else | 109 | #else |
110 | 110 | ||
111 | static inline void allocate_lppacas(int, unsigned long) { } | 111 | static inline void allocate_lppacas(int nr_cpus, unsigned long limit) { } |
112 | static inline void free_lppacas(void) { } | 112 | static inline void free_lppacas(void) { } |
113 | 113 | ||
114 | #endif /* CONFIG_PPC_BOOK3S */ | 114 | #endif /* CONFIG_PPC_BOOK3S */ |