[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <1445214204.31899.36.camel@perches.com>
Date: Sun, 18 Oct 2015 17:23:24 -0700
From: Joe Perches <joe@...ches.com>
To: Alexey Klimov <alexey.klimov@...aro.org>
Cc: daniel.lezcano@...aro.org, matthias.bgg@...il.com,
linux-kernel@...r.kernel.org, linux-mediatek@...ts.infradead.org,
yingjoe.chen@...iatek.com, tglx@...utronix.de,
klimov.linux@...il.com
Subject: Re: [PATCH v2 2/3] clocksource: mtk_timer: fix pr_warn() messages
in mtk_timer_init
On Mon, 2015-10-19 at 03:09 +0300, Alexey Klimov wrote:
> 1) Change pr_warn()s to pr_err()s. These messages are actually
> errors and not warnings.
> 2) Add missing \n.
> 3) Error message for kzalloc() failure is removed per suggestion
> by Joe Perches. There is generic stack_dump() for allocation issues.
Some of the braces around single statements
could also be removed.
> diff --git a/drivers/clocksource/mtk_timer.c b/drivers/clocksource/mtk_timer.c
> index ca5ea9e..ac92ca2 100644
> @@ -184,7 +184,6 @@ static void __init mtk_timer_init(struct device_node *node)
>
> evt = kzalloc(sizeof(*evt), GFP_KERNEL);
> if (!evt) {
> - pr_warn("Can't allocate mtk clock event driver struct");
> return;
> }
could be written:
evt = kzalloc(sizeof(*evt), GFP_KERNEL);
if (!evt)
return;
etc...
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists