NTB: EPF: set pointer addr to null using NULL rather than 0
authorColin Ian King <colin.i.king@gmail.com>
Thu, 23 Jun 2022 16:57:09 +0000 (17:57 +0100)
committerJon Mason <jdmason@kudzu.us>
Tue, 9 Aug 2022 21:54:29 +0000 (17:54 -0400)
The pointer addr is being set to null using 0. Use NULL instead.

Cleans up sparse warning:
warning: Using plain integer as NULL pointer

Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
Signed-off-by: Jon Mason <jdmason@kudzu.us>
drivers/pci/endpoint/functions/pci-epf-vntb.c

index 1466dd1..599538c 100644 (file)
@@ -597,7 +597,7 @@ static int epf_ntb_mw_bar_init(struct epf_ntb *ntb)
 
                ntb->epf->bar[barno].barno = barno;
                ntb->epf->bar[barno].size = size;
-               ntb->epf->bar[barno].addr = 0;
+               ntb->epf->bar[barno].addr = NULL;
                ntb->epf->bar[barno].phys_addr = 0;
                ntb->epf->bar[barno].flags |= upper_32_bits(size) ?
                                PCI_BASE_ADDRESS_MEM_TYPE_64 :