[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <4F86739E.8080300@st.com>
Date: Thu, 12 Apr 2012 11:48:06 +0530
From: Viresh Kumar <viresh.kumar@...com>
To: Mike Turquette <mturquette@...aro.org>
Cc: "arnd.bergmann@...aro.org" <arnd.bergmann@...aro.org>,
"linux-kernel@...r.kernel.org" <linux-kernel@...r.kernel.org>,
"linux-arm-kernel@...ts.infradead.org"
<linux-arm-kernel@...ts.infradead.org>,
"linaro-dev@...ts.linaro.org" <linaro-dev@...ts.linaro.org>,
"patches@...aro.org" <patches@...aro.org>,
Shawn Guo <shawn.guo@...aro.org>,
Olof Johansson <olof@...om.net>,
Russell King <linux@....linux.org.uk>,
Sascha Hauer <s.hauer@...gutronix.de>,
Richard Zhao <richard.zhao@...aro.org>,
Saravana Kannan <skannan@...eaurora.org>,
Mark Brown <broonie@...nsource.wolfsonmicro.com>,
Andrew Lunn <andrew@...n.ch>, Rajendra Nayak <rnayak@...com>
Subject: Re: [PATCH 05/13] clk: use kzalloc in clk_register_mux
On 4/12/2012 6:32 AM, Mike Turquette wrote:
> From: Shawn Guo <shawn.guo@...aro.org>
>
> Change clk_register_mux to use kzalloc, just like what all other basic
> clk registration functions do.
>
> Signed-off-by: Shawn Guo <shawn.guo@...aro.org>
> Signed-off-by: Mike Turquette <mturquette@...aro.org>
> Cc: Arnd Bergman <arnd.bergmann@...aro.org>
> Cc: Olof Johansson <olof@...om.net>
> Cc: Russell King <linux@....linux.org.uk>
> Cc: Sascha Hauer <s.hauer@...gutronix.de>
> Cc: Richard Zhao <richard.zhao@...aro.org>
> Cc: Saravana Kannan <skannan@...eaurora.org>
> Cc: Mark Brown <broonie@...nsource.wolfsonmicro.com>
> Cc: Andrew Lunn <andrew@...n.ch>
> Cc: Rajendra Nayak <rnayak@...com>
> Cc: Viresh Kumar <viresh.kumar@...com>
> ---
> drivers/clk/clk-mux.c | 2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/drivers/clk/clk-mux.c b/drivers/clk/clk-mux.c
> index c71ad1f..50e0595 100644
> --- a/drivers/clk/clk-mux.c
> +++ b/drivers/clk/clk-mux.c
> @@ -97,7 +97,7 @@ struct clk *clk_register_mux(struct device *dev, const char *name,
> {
> struct clk_mux *mux;
>
> - mux = kmalloc(sizeof(struct clk_mux), GFP_KERNEL);
> + mux = kzalloc(sizeof(struct clk_mux), GFP_KERNEL);
>
> if (!mux) {
> pr_err("%s: could not allocate mux clk\n", __func__);
Reviewed-by: Viresh Kumar <viresh.kumar@...com>
--
viresh
--
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