Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3c4b7644 authored by Kumar Gala's avatar Kumar Gala
Browse files

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: default avatarKumar Gala <galak@kernel.crashing.org>
parent b6f9e595
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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 */