[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <53C6B489.3040001@codeaurora.org>
Date: Wed, 16 Jul 2014 10:21:13 -0700
From: Stephen Boyd <sboyd@...eaurora.org>
To: Saravana Kannan <skannan@...eaurora.org>
CC: MyungJoo Ham <myungjoo.ham@...sung.com>,
Kyungmin Park <kyungmin.park@...sung.com>,
Greg Kroah-Hartman <gregkh@...uxfoundation.org>,
Suman Tatiraju <sumant@...eaurora.org>,
linux-pm@...r.kernel.org, stable@...r.kernel.org,
linux-kernel@...r.kernel.org, linux-arm-msm@...r.kernel.org,
linux-arm-kernel@...ts.infradead.org
Subject: Re: [PATCH] PM / devfreq: Allocate memory using the right data type
On 07/15/14 20:10, Saravana Kannan wrote:
> diff --git a/drivers/devfreq/devfreq.c b/drivers/devfreq/devfreq.c
> index 65eed38..349e28ea 100644
> --- a/drivers/devfreq/devfreq.c
> +++ b/drivers/devfreq/devfreq.c
> @@ -483,9 +483,10 @@ struct devfreq *devfreq_add_device(struct device *dev,
> devfreq->profile->max_state *
> devfreq->profile->max_state,
> GFP_KERNEL);
> - devfreq->time_in_state = devm_kzalloc(dev, sizeof(unsigned int) *
> - devfreq->profile->max_state,
> - GFP_KERNEL);
> + devfreq->time_in_state = devm_kzalloc(dev,
> + sizeof(*(devfreq->time_in_state)) *
> + devfreq->profile->max_state,
> + GFP_KERNEL);
We could use devm_kcalloc() here too.
--
Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum,
hosted by The Linux Foundation
--
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