From: Andrei Emeltchenko <Andrei.Emeltchenko.news@gmail.com>
To: linux-bluetooth@vger.kernel.org
Subject: Re: [PATCH] Bluetooth: Fix warning: using int as NULL pointer
Date: Tue, 26 Jun 2012 14:59:02 +0300 [thread overview]
Message-ID: <20120626115855.GC22061@aemeltch-MOBL1> (raw)
In-Reply-To: <1340192412-30161-1-git-send-email-Andrei.Emeltchenko.news@gmail.com>
On Wed, Jun 20, 2012 at 02:40:12PM +0300, Andrei Emeltchenko wrote:
> From: Andrei Emeltchenko <andrei.emeltchenko@intel.com>
>
> Fix for warnings below:
>
> ...
> drivers/bluetooth/bt3c_cs.c:667:20: warning: Using plain integer
> as NULL pointer
> drivers/bluetooth/btuart_cs.c:596:20: warning: Using plain integer
> as NULL pointer
> ...
>
> Signed-off-by: Andrei Emeltchenko <andrei.emeltchenko@intel.com>
ping
> ---
> drivers/bluetooth/bt3c_cs.c | 2 +-
> drivers/bluetooth/btuart_cs.c | 2 +-
> 2 files changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/bluetooth/bt3c_cs.c b/drivers/bluetooth/bt3c_cs.c
> index b2b0fbb..8925b6d 100644
> --- a/drivers/bluetooth/bt3c_cs.c
> +++ b/drivers/bluetooth/bt3c_cs.c
> @@ -664,7 +664,7 @@ static int bt3c_check_config(struct pcmcia_device *p_dev, void *priv_data)
> {
> int *try = priv_data;
>
> - if (try == 0)
> + if (!try)
> p_dev->io_lines = 16;
>
> if ((p_dev->resource[0]->end != 8) || (p_dev->resource[0]->start == 0))
> diff --git a/drivers/bluetooth/btuart_cs.c b/drivers/bluetooth/btuart_cs.c
> index 65b8d99..21e803a 100644
> --- a/drivers/bluetooth/btuart_cs.c
> +++ b/drivers/bluetooth/btuart_cs.c
> @@ -593,7 +593,7 @@ static int btuart_check_config(struct pcmcia_device *p_dev, void *priv_data)
> {
> int *try = priv_data;
>
> - if (try == 0)
> + if (!try)
> p_dev->io_lines = 16;
>
> if ((p_dev->resource[0]->end != 8) || (p_dev->resource[0]->start == 0))
> --
> 1.7.9.5
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
next prev parent reply other threads:[~2012-06-26 11:59 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-06-20 11:40 [PATCH] Bluetooth: Fix warning: using int as NULL pointer Andrei Emeltchenko
2012-06-26 11:59 ` Andrei Emeltchenko [this message]
2012-06-30 15:09 ` Gustavo Padovan
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=20120626115855.GC22061@aemeltch-MOBL1 \
--to=andrei.emeltchenko.news@gmail.com \
--cc=linux-bluetooth@vger.kernel.org \
/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