[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <20200529053836.GA525659@kroah.com>
Date: Fri, 29 May 2020 07:38:36 +0200
From: Greg KH <gregkh@...uxfoundation.org>
To: Yi Wang <wang.yi59@....com.cn>
Cc: sudeep.dutt@...el.com, ashutosh.dixit@...el.com, arnd@...db.de,
alexios.zavras@...el.com, tglx@...utronix.de, allison@...utok.net,
linux-kernel@...r.kernel.org, xue.zhihong@....com.cn,
wang.liang82@....com.cn, Liao Pingfang <liao.pingfang@....com.cn>
Subject: Re: [PATCH] misc: mic: Replace kmalloc with kzalloc in the error
message
On Fri, May 29, 2020 at 09:01:21AM +0800, Yi Wang wrote:
> From: Liao Pingfang <liao.pingfang@....com.cn>
>
> Use kzalloc instead of kmalloc in the error message according to
> the previous kzalloc() call.
>
> Signed-off-by: Liao Pingfang <liao.pingfang@....com.cn>
> ---
> drivers/misc/mic/host/mic_main.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/misc/mic/host/mic_main.c b/drivers/misc/mic/host/mic_main.c
> index be0784f..8296f31 100644
> --- a/drivers/misc/mic/host/mic_main.c
> +++ b/drivers/misc/mic/host/mic_main.c
> @@ -164,7 +164,7 @@ static int mic_probe(struct pci_dev *pdev,
> mdev = kzalloc(sizeof(*mdev), GFP_KERNEL);
> if (!mdev) {
> rc = -ENOMEM;
> - dev_err(&pdev->dev, "mdev kmalloc failed rc %d\n", rc);
> + dev_err(&pdev->dev, "mdev kzalloc failed rc %d\n", rc);
The message should just be dropped as the call will print the failure
message anyway.
thanks,
greg k-h
Powered by blists - more mailing lists