OSDN Git Service

xen: xen-pciback: fix warning Using plain integer as NULL pointer
authorHariprasad Kelam <hariprasad.kelam@gmail.com>
Sat, 6 Apr 2019 12:29:12 +0000 (17:59 +0530)
committerBoris Ostrovsky <boris.ostrovsky@oracle.com>
Tue, 23 Apr 2019 15:15:09 +0000 (11:15 -0400)
Changes passing function argument 0 to NULL to avoid below sparse
warning

 CHECK   drivers/xen/xen-pciback/xenbus.c
drivers/xen/xen-pciback/xenbus.c:700:51: warning: Using plain integer as
NULL pointer

Signed-off-by: Hariprasad Kelam <hariprasad.kelam@gmail.com>
Reviewed-by: Mukesh Ojha <mojha@codeaurora.org>
Signed-off-by: Boris Ostrovsky <boris.ostrovsky@oracle.com>
drivers/xen/xen-pciback/xenbus.c

index 23f7f6e..833b2d2 100644 (file)
@@ -697,7 +697,7 @@ static int xen_pcibk_xenbus_probe(struct xenbus_device *dev,
        /* We need to force a call to our callback here in case
         * xend already configured us!
         */
-       xen_pcibk_be_watch(&pdev->be_watch, NULL, 0);
+       xen_pcibk_be_watch(&pdev->be_watch, NULL, NULL);
 
 out:
        return err;