Merge "mm: page_alloc: Add u64 typecast to memblock_dbg call in free_reserved_area"

This commit is contained in:
qctecmdr 2020-05-05 01:29:18 -07:00 committed by Gerrit - the friendly Code Review server
commit d9967768c6

View file

@ -7493,7 +7493,7 @@ unsigned long free_reserved_area(void *start, void *end, int poison, char *s)
#ifdef CONFIG_HAVE_MEMBLOCK
memblock_dbg("memblock_free: [%#016llx-%#016llx] %pS\n",
__pa(start), __pa(end), (void *)_RET_IP_);
(u64)__pa(start), (u64)__pa(end), (void *)_RET_IP_);
#endif
return pages;