[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1405480243-25915-1-git-send-email-skannan@codeaurora.org>
Date: Tue, 15 Jul 2014 20:10:43 -0700
From: Saravana Kannan <skannan@...eaurora.org>
To: MyungJoo Ham <myungjoo.ham@...sung.com>,
Kyungmin Park <kyungmin.park@...sung.com>,
Greg Kroah-Hartman <gregkh@...uxfoundation.org>
Cc: 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,
"Saravana Kannan" <skannan@...eaurora.org>
Subject: [PATCH] PM / devfreq: Allocate memory using the right data type
From: Suman Tatiraju <sumant@...eaurora.org>
Long and int have different sizes on a 64-bit machine. Allocate
memory for the time_in_state table using the right data type.
Change-Id: I335277674018c0ea759aa0996309d52578ea1fd5
Signed-off-by: Suman Tatiraju <sumant@...eaurora.org>
Reviewed-by: Saravana Kannan <skannan@...eaurora.org>
Signed-off-by: Saravana Kannan <skannan@...eaurora.org>
---
drivers/devfreq/devfreq.c | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
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);
devfreq->last_stat_updated = jiffies;
dev_set_name(&devfreq->dev, "%s", dev_name(dev));
--
1.8.2.1
The Qualcomm Innovation Center, Inc. is a member of the 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