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

Commit dc71c7d5 authored by Andrew Morton's avatar Andrew Morton Committed by Geert Uytterhoeven
Browse files

arch/m68k/include/asm/motorola_pgalloc.h: fix kunmap arg



arch/m68k/include/asm/motorola_pgalloc.h: In function 'pte_alloc_one':
arch/m68k/include/asm/motorola_pgalloc.h:44: warning: passing argument 1 of 'kunmap' from incompatible pointer type

Also, remove unneeded test for kmap() failure.

Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarGeert Uytterhoeven <geert@linux-m68k.org>
parent dd9b3e84
Loading
Loading
Loading
Loading
+4 −6
Original line number Original line Diff line number Diff line
@@ -36,12 +36,10 @@ static inline pgtable_t pte_alloc_one(struct mm_struct *mm, unsigned long addres
		return NULL;
		return NULL;


	pte = kmap(page);
	pte = kmap(page);
	if (pte) {
	__flush_page_to_ram(pte);
	__flush_page_to_ram(pte);
	flush_tlb_kernel_page(pte);
	flush_tlb_kernel_page(pte);
	nocache_page(pte);
	nocache_page(pte);
	}
	kunmap(page);
	kunmap(pte);
	pgtable_page_ctor(page);
	pgtable_page_ctor(page);
	return page;
	return page;
}
}