Re: [PATCH] atm: ambassador: use NULL instead of 0 for pointer

2014-02-19 Thread David Miller
From: Daeseok Youn 
Date: Wed, 19 Feb 2014 14:11:15 +0900

> From 932e928d53b1e588dc17019e7f9fa7a61b8b7468 Mon Sep 17 00:00:00 2001
> From: Daeseok Youn 
> Date: Wed, 19 Feb 2014 10:35:41 +0900
> Subject: [PATCH] atm: ambassador: use NULL instead of 0 for pointer
> 
> sparse says:
> 
> drivers/atm/ambassador.c:1928:24: warning:
>  Using plain integer as NULL pointer
> 
> Signed-off-by: Daeseok Youn 

Applied.
--
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/


Re: [PATCH] atm: ambassador: use NULL instead of 0 for pointer

2014-02-19 Thread chas williams - CONTRACTOR
On Wed, 19 Feb 2014 14:11:15 +0900
Daeseok Youn  wrote:

> >From 932e928d53b1e588dc17019e7f9fa7a61b8b7468 Mon Sep 17 00:00:00 2001
> From: Daeseok Youn 
> Date: Wed, 19 Feb 2014 10:35:41 +0900
> Subject: [PATCH] atm: ambassador: use NULL instead of 0 for pointer
> 
> sparse says:
> 
> drivers/atm/ambassador.c:1928:24: warning:
>  Using plain integer as NULL pointer
> 
> Signed-off-by: Daeseok Youn 
> ---
>  drivers/atm/ambassador.c |2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/atm/ambassador.c b/drivers/atm/ambassador.c
> index 62a7607..f1a9198 100644
> --- a/drivers/atm/ambassador.c
> +++ b/drivers/atm/ambassador.c
> @@ -1925,7 +1925,7 @@ static int ucode_init(loader_block *lb, amb_dev *dev)
>const struct firmware *fw;
>unsigned long start_address;
>const struct ihex_binrec *rec;
> -  const char *errmsg = 0;
> +  const char *errmsg = NULL;
>int res;
>  
>res = request_ihex_firmware(, "atmsar11.fw", >pci_dev->dev);

Acked-by: Chas Williams 
--
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/


Re: [PATCH] atm: ambassador: use NULL instead of 0 for pointer

2014-02-19 Thread chas williams - CONTRACTOR
On Wed, 19 Feb 2014 14:11:15 +0900
Daeseok Youn daeseok.y...@gmail.com wrote:

 From 932e928d53b1e588dc17019e7f9fa7a61b8b7468 Mon Sep 17 00:00:00 2001
 From: Daeseok Youn daeseok.y...@gmail.com
 Date: Wed, 19 Feb 2014 10:35:41 +0900
 Subject: [PATCH] atm: ambassador: use NULL instead of 0 for pointer
 
 sparse says:
 
 drivers/atm/ambassador.c:1928:24: warning:
  Using plain integer as NULL pointer
 
 Signed-off-by: Daeseok Youn daeseok.y...@gmail.com
 ---
  drivers/atm/ambassador.c |2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 diff --git a/drivers/atm/ambassador.c b/drivers/atm/ambassador.c
 index 62a7607..f1a9198 100644
 --- a/drivers/atm/ambassador.c
 +++ b/drivers/atm/ambassador.c
 @@ -1925,7 +1925,7 @@ static int ucode_init(loader_block *lb, amb_dev *dev)
const struct firmware *fw;
unsigned long start_address;
const struct ihex_binrec *rec;
 -  const char *errmsg = 0;
 +  const char *errmsg = NULL;
int res;
  
res = request_ihex_firmware(fw, atmsar11.fw, dev-pci_dev-dev);

Acked-by: Chas Williams c...@cmf.nrl.navy.mil
--
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/


Re: [PATCH] atm: ambassador: use NULL instead of 0 for pointer

2014-02-19 Thread David Miller
From: Daeseok Youn daeseok.y...@gmail.com
Date: Wed, 19 Feb 2014 14:11:15 +0900

 From 932e928d53b1e588dc17019e7f9fa7a61b8b7468 Mon Sep 17 00:00:00 2001
 From: Daeseok Youn daeseok.y...@gmail.com
 Date: Wed, 19 Feb 2014 10:35:41 +0900
 Subject: [PATCH] atm: ambassador: use NULL instead of 0 for pointer
 
 sparse says:
 
 drivers/atm/ambassador.c:1928:24: warning:
  Using plain integer as NULL pointer
 
 Signed-off-by: Daeseok Youn daeseok.y...@gmail.com

Applied.
--
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/