Commit bb8a14a3 authored by Dmitriy Cherkasov's avatar Dmitriy Cherkasov Committed by Greg Kroah-Hartman

staging: gasket: use NULL instead of 0 for null pointer

Fixes sparse warning: Using plain integer as NULL pointer
Signed-off-by: default avatarDmitriy Cherkasov <dmitriy@oss-tech.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 5b6e80cc
...@@ -1605,7 +1605,7 @@ int gasket_alloc_coherent_memory(struct gasket_dev *gasket_dev, u64 size, ...@@ -1605,7 +1605,7 @@ int gasket_alloc_coherent_memory(struct gasket_dev *gasket_dev, u64 size,
if (gasket_dev->page_table[index]->coherent_pages) { if (gasket_dev->page_table[index]->coherent_pages) {
kfree(gasket_dev->page_table[index]->coherent_pages); kfree(gasket_dev->page_table[index]->coherent_pages);
gasket_dev->page_table[index]->coherent_pages = 0; gasket_dev->page_table[index]->coherent_pages = NULL;
} }
gasket_dev->page_table[index]->num_coherent_pages = 0; gasket_dev->page_table[index]->num_coherent_pages = 0;
return -ENOMEM; return -ENOMEM;
......
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