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

Commit 639297b4 authored by Ira Weiny's avatar Ira Weiny Committed by Doug Ledford
Browse files

IB/hfi1: Use "false" not 0



For bool parameters "false" should be used

Reviewed-by: default avatarDean Luick <dean.luick@intel.com>
Signed-off-by: default avatarIra Weiny <ira.weiny@intel.com>
Signed-off-by: default avatarDoug Ledford <dledford@redhat.com>
parent 5ed3b15b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1224,7 +1224,7 @@ static int pin_vector_pages(struct user_sdma_request *req,
static void unpin_vector_pages(struct mm_struct *mm, struct page **pages,
			       unsigned start, unsigned npages)
{
	hfi1_release_user_pages(mm, pages + start, npages, 0);
	hfi1_release_user_pages(mm, pages + start, npages, false);
	kfree(pages);
}