On 12/01/2016 10:44 AM, Amit Kumar Kushwaha wrote:
> This patch fixes the following warning reported by checkpatch.pl
> WARNING: Possible unnecessary 'out of memory' message
> 
> Signed-off-by: Amit Kushwaha <kushwah...@samsung.com>
> ---
>  drivers/staging/wilc1000/host_interface.c | 4 +---
>  1 file changed, 1 insertion(+), 3 deletions(-)
> 
> diff --git a/drivers/staging/wilc1000/host_interface.c 
> b/drivers/staging/wilc1000/host_interface.c
> index 6ab7443..b7d88bc 100644
> --- a/drivers/staging/wilc1000/host_interface.c
> +++ b/drivers/staging/wilc1000/host_interface.c
> @@ -2322,10 +2322,8 @@ static u32 Handle_ListenStateExpired(struct wilc_vif 
> *vif,
>               wid.size = 2;
>               wid.val = kmalloc(wid.size, GFP_KERNEL);
>  
> -             if (!wid.val) {
> -                     netdev_err(vif->ndev, "Failed to allocate memory\n");
> +             if (!wid.val)
>                       return -ENOMEM;
> -             }
>  
>               wid.val[0] = u8remain_on_chan_flag;
>               wid.val[1] = FALSE_FRMWR_CHANNEL;
> 

Hello Amit,

I cannot apply your patch, because it was sent Base64-encoded. Anyway,
are you sure you are working on a recent kernel tree? This issue has
been fixed already by commit 98b6594844 as of 2016-10-09 in staging-next.

Regards,
Markus

_______________________________________________
devel mailing list
de...@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

Reply via email to