Skip to content

Commit 9bdeaca

Browse files
committed
Merge tag 'powerpc-5.17-5' of git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux
Pull powerpc fix from Michael Ellerman: "Fix build failure when CONFIG_PPC_64S_HASH_MMU is not set. Thanks to Murilo Opsfelder Araujo, and Erhard F" * tag 'powerpc-5.17-5' of git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux: powerpc/64s: Fix build failure when CONFIG_PPC_64S_HASH_MMU is not set
2 parents f40a33f + 58dbe9b commit 9bdeaca

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

arch/powerpc/include/asm/book3s/64/mmu.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,6 @@ static inline struct subpage_prot_table *mm_ctx_subpage_prot(mm_context_t *ctx)
202202
/*
203203
* The current system page and segment sizes
204204
*/
205-
extern int mmu_linear_psize;
206205
extern int mmu_virtual_psize;
207206
extern int mmu_vmalloc_psize;
208207
extern int mmu_io_psize;
@@ -213,6 +212,7 @@ extern int mmu_io_psize;
213212
#define mmu_virtual_psize MMU_PAGE_4K
214213
#endif
215214
#endif
215+
extern int mmu_linear_psize;
216216
extern int mmu_vmemmap_psize;
217217

218218
/* MMU initialization */

arch/powerpc/include/asm/kexec_ranges.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ struct crash_mem *realloc_mem_ranges(struct crash_mem **mem_ranges);
99
int add_mem_range(struct crash_mem **mem_ranges, u64 base, u64 size);
1010
int add_tce_mem_ranges(struct crash_mem **mem_ranges);
1111
int add_initrd_mem_range(struct crash_mem **mem_ranges);
12-
#ifdef CONFIG_PPC_BOOK3S_64
12+
#ifdef CONFIG_PPC_64S_HASH_MMU
1313
int add_htab_mem_range(struct crash_mem **mem_ranges);
1414
#else
1515
static inline int add_htab_mem_range(struct crash_mem **mem_ranges)

0 commit comments

Comments
 (0)