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

Commit b7e861db authored by qctecmdr's avatar qctecmdr Committed by Gerrit - the friendly Code Review server
Browse files

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

parents 57d8ef68 9671ff19
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -7493,7 +7493,7 @@ unsigned long free_reserved_area(void *start, void *end, int poison, char *s)


#ifdef CONFIG_HAVE_MEMBLOCK
#ifdef CONFIG_HAVE_MEMBLOCK
		memblock_dbg("memblock_free: [%#016llx-%#016llx] %pS\n",
		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
#endif


	return pages;
	return pages;