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

Commit ff7c6600 authored by Benjamin Herrenschmidt's avatar Benjamin Herrenschmidt
Browse files

powerpc/mm: Fix printk type warning in mmu_context_nohash



We need to use %zu instead of %d when printing a sizeof()

Signed-off-by: default avatarBenjamin Herrenschmidt <benh@kernel.crashing.org>
parent d62cbf45
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -380,7 +380,7 @@ void __init mmu_context_init(void)
#endif

	printk(KERN_INFO
	       "MMU: Allocated %d bytes of context maps for %d contexts\n",
	       "MMU: Allocated %zu bytes of context maps for %d contexts\n",
	       2 * CTX_MAP_SIZE + (sizeof(void *) * (last_context + 1)),
	       last_context - first_context + 1);