public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Greg KH <gregkh@linuxfoundation.org>
To: Rocco Folino <rocco@devzen.net>
Cc: christian.gromm@microchip.com, linux-kernel@vger.kernel.org
Subject: Re: [PATCH] staging/most: Use NULL instead of plain integer for pointer
Date: Thu, 3 Sep 2015 09:42:10 -0700	[thread overview]
Message-ID: <20150903164210.GA26459@kroah.com> (raw)
In-Reply-To: <49326203470b591c3010a62a243fbdb055d1c669.1440196833.git.rocco@devzen.net>

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 :(

      reply	other threads:[~2015-09-03 16:42 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-08-21 22:41 [PATCH] staging/most: Use NULL instead of plain integer for pointer Rocco Folino
2015-09-03 16:42 ` Greg KH [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20150903164210.GA26459@kroah.com \
    --to=gregkh@linuxfoundation.org \
    --cc=christian.gromm@microchip.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=rocco@devzen.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox