[<prev] [next>] [day] [month] [year] [list]
Message-Id: <1545670426-39823-1-git-send-email-prathameshdeshpande7@gmail.com>
Date: Mon, 24 Dec 2018 08:53:46 -0800
From: Prathamesh Deshpande <prathameshdeshpande7@...il.com>
To: osdevtc@...il.com, gregkh@...uxfoundation.org
Cc: devel@...verdev.osuosl.org, linux-kernel@...r.kernel.org,
prathameshdeshpande7@...il.com
Subject: [PATCH v2] staging: wlan-ng: prism2fw.c: Fix "Possible unnecessary 'out of memory' message" checkpatch.pl warning"
This patch removes unnecessary out of memory warning
message from wlan-ng prism2fw.c file.
Signed-off-by: Prathamesh Deshpande <prathameshdeshpande7@...il.com>
---
drivers/staging/wlan-ng/prism2fw.c | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/drivers/staging/wlan-ng/prism2fw.c b/drivers/staging/wlan-ng/prism2fw.c
index bb572b7..94800c0 100644
--- a/drivers/staging/wlan-ng/prism2fw.c
+++ b/drivers/staging/wlan-ng/prism2fw.c
@@ -556,10 +556,9 @@ static int mkimage(struct imgchunk *clist, unsigned int *ccnt)
/* Allocate buffer space for chunks */
for (i = 0; i < *ccnt; i++) {
clist[i].data = kzalloc(clist[i].len, GFP_KERNEL);
- if (!clist[i].data) {
- pr_err("failed to allocate image space, exiting.\n");
+ if (!clist[i].data)
return 1;
- }
+
pr_debug("chunk[%d]: addr=0x%06x len=%d\n",
i, clist[i].addr, clist[i].len);
}
--
1.8.3.1
Powered by blists - more mailing lists