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

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
......@@ -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);
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment