Skip to content

Commit

Permalink
powerpc: Fix compile error with paca code on ppc64e
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Kumar Gala committed Oct 14, 2010
1 parent b6f9e59 commit 3c4b764
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/powerpc/kernel/paca.c
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ static void free_lppacas(void)

#else

static inline void allocate_lppacas(int, unsigned long) { }
static inline void allocate_lppacas(int nr_cpus, unsigned long limit) { }
static inline void free_lppacas(void) { }

#endif /* CONFIG_PPC_BOOK3S */
Expand Down

0 comments on commit 3c4b764

Please sign in to comment.