Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1218436
| From | Greg KH <gregkh@linuxfoundation.org> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | Re: [PATCH] staging/most: Use NULL instead of plain integer for pointer |
| Date | 2015-09-03 18:50 +0200 |
| Message-ID | <q4FS2-M8-11@gated-at.bofh.it> (permalink) |
| References | <q03ii-wp-7@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
On Sat, Aug 22, 2015 at 12:41:54AM +0200, Rocco Folino wrote: > This patch fixes the warning generated by sparse: "Using plain integer > as NULL pointer" by replacing 0s with NULL. > > Signed-off-by: Rocco Folino <rocco@devzen.net> > --- > drivers/staging/most/aim-network/networking.c | 2 +- > drivers/staging/most/aim-v4l2/video.c | 2 +- > drivers/staging/most/hdm-dim2/dim2_hdm.c | 8 ++++---- > 3 files changed, 6 insertions(+), 6 deletions(-) > > diff --git a/drivers/staging/most/aim-network/networking.c b/drivers/staging/most/aim-network/networking.c > index c8ab2399faad..a1e1bce16296 100644 > --- a/drivers/staging/most/aim-network/networking.c > +++ b/drivers/staging/most/aim-network/networking.c > @@ -295,7 +295,7 @@ static void most_net_rm_netdev_safe(struct net_dev_context *nd) > > unregister_netdev(nd->dev); > free_netdev(nd->dev); > - nd->dev = 0; > + nd->dev = NULL; > } Someone sent a patch already that did this change, so this patch doesn't apply anymore :( -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
Back to linux.kernel | Previous | Next — Previous in thread | Find similar | Unroll thread
[PATCH] staging/most: Use NULL instead of plain integer for pointer Rocco Folino <rocco@devzen.net> - 2015-08-22 00:50 +0200 Re: [PATCH] staging/most: Use NULL instead of plain integer for pointer Greg KH <gregkh@linuxfoundation.org> - 2015-09-03 18:50 +0200
csiph-web