From: Markus Elfring <elfr...@users.sourceforge.net>
Date: Mon, 26 Sep 2016 15:35:47 +0200

Omit an extra message for a memory allocation failure in this function.

Link: 
http://events.linuxfoundation.org/sites/events/files/slides/LCJ16-Refactor_Strings-WSang_0.pdf

Signed-off-by: Markus Elfring <elfr...@users.sourceforge.net>
---
 drivers/isdn/gigaset/common.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/drivers/isdn/gigaset/common.c b/drivers/isdn/gigaset/common.c
index f505b42..c05a2a4 100644
--- a/drivers/isdn/gigaset/common.c
+++ b/drivers/isdn/gigaset/common.c
@@ -712,7 +712,6 @@ struct cardstate *gigaset_initcs(struct gigaset_driver 
*drv, int channels,
        cs->bcs = kmalloc_array(channels, sizeof(*cs->bcs), GFP_KERNEL);
        cs->inbuf = kmalloc(sizeof(*cs->inbuf), GFP_KERNEL);
        if (!cs->bcs || !cs->inbuf) {
-               pr_err("out of memory\n");
                goto error;
        }
        ++cs->cs_init;
-- 
2.10.0

Reply via email to