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

Commit 7b8ee84d authored by Harvey Harrison's avatar Harvey Harrison Committed by Linus Torvalds
Browse files

mm: fix integer as NULL pointer warnings



mm/hugetlb.c:207:11: warning: Using plain integer as NULL pointer

Signed-off-by: default avatarHarvey Harrison <harvey.harrison@gmail.com>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent b331d259
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -204,7 +204,7 @@ static struct page *alloc_fresh_huge_page_node(int nid)
	if (page) {
		if (arch_prepare_hugepage(page)) {
			__free_pages(page, HUGETLB_PAGE_ORDER);
			return 0;
			return NULL;
		}
		set_compound_page_dtor(page, free_huge_page);
		spin_lock(&hugetlb_lock);