[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1362922535-25172-1-git-send-email-mihai.stirbat@gmail.com>
Date: Sun, 10 Mar 2013 15:35:35 +0200
From: Mihai Stirbat <mihai.stirbat@...il.com>
To: linux@....linux.org.uk
Cc: vincent.guittot@...aro.org, namhyung@...nel.org,
lorenzo.pieralisi@....com, a.p.zijlstra@...llo.nl,
linux-arm-kernel@...ts.infradead.org, linux-kernel@...r.kernel.org,
Mihai Stirbat <mihai.stirbat@...il.com>
Subject: [PATCH] topology: removed kzalloc return value cast
Signed-off-by: Mihai Stirbat <mihai.stirbat@...il.com>
---
arch/arm/kernel/topology.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/arm/kernel/topology.c b/arch/arm/kernel/topology.c
index 79282eb..f10316b 100644
--- a/arch/arm/kernel/topology.c
+++ b/arch/arm/kernel/topology.c
@@ -100,7 +100,7 @@ static void __init parse_dt_topology(void)
int alloc_size, cpu = 0;
alloc_size = nr_cpu_ids * sizeof(struct cpu_capacity);
- cpu_capacity = (struct cpu_capacity *)kzalloc(alloc_size, GFP_NOWAIT);
+ cpu_capacity = kzalloc(alloc_size, GFP_NOWAIT);
while ((cn = of_find_node_by_type(cn, "cpu"))) {
const u32 *rate, *reg;
--
1.7.10.4
--
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