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 <ro...@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 majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/