Message ID | 20190406122912.GA403@hari-Inspiron-1545 (mailing list archive) |
---|---|
State | Accepted |
Commit | 515762b9164a4e4ba5c775ceab89753a20a0c632 |
Headers | show |
Series | xen: xen-pciback: fix warning Using plain integer as NULL pointer | expand |
On 4/6/2019 5:59 PM, Hariprasad Kelam wrote: > 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> Cheers, -Mukesh > --- > drivers/xen/xen-pciback/xenbus.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/xen/xen-pciback/xenbus.c b/drivers/xen/xen-pciback/xenbus.c > index 23f7f6e..833b2d2 100644 > --- a/drivers/xen/xen-pciback/xenbus.c > +++ b/drivers/xen/xen-pciback/xenbus.c > @@ -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;
On 06/04/2019 14:29, Hariprasad Kelam wrote: > 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: Juergen Gross <jgross@suse.com> Juergen
On 4/6/19 8:29 AM, Hariprasad Kelam wrote: > 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> Applied to for-linus-5.2
diff --git a/drivers/xen/xen-pciback/xenbus.c b/drivers/xen/xen-pciback/xenbus.c index 23f7f6e..833b2d2 100644 --- a/drivers/xen/xen-pciback/xenbus.c +++ b/drivers/xen/xen-pciback/xenbus.c @@ -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;
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> --- drivers/xen/xen-pciback/xenbus.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)