[<prev] [next>] [day] [month] [year] [list]
Message-ID: <20140526220813.GG25779@google.com>
Date: Mon, 26 May 2014 23:08:13 +0100
From: Daniel Walter <dwalter@...gle.com>
To: linux-kernel@...r.kernel.org
Cc: mcuos.com@...il.com, richard@....at
Subject: [PATCH 05/12] [arch/arm/mach-w90x900] Remove obsolete strict_strto
calls
From: Daniel Walter <dwalter@...gle.com>
Subject: [PATCH 05/12] [arch/arm/mach-w90x900] replace obsolete strict_strto
Replace obsolete strict_strto with kstrto calls
Signed-off-by: Daniel Walter <dwalter@...gle.com>
---
arch/arm/mach-w90x900/cpu.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/arch/arm/mach-w90x900/cpu.c b/arch/arm/mach-w90x900/cpu.c
index b1eabaa..213230ee 100644
--- a/arch/arm/mach-w90x900/cpu.c
+++ b/arch/arm/mach-w90x900/cpu.c
@@ -178,7 +178,8 @@ static int __init nuc900_set_cpufreq(char *str)
if (!*str)
return 0;
- strict_strtoul(str, 0, &cpufreq);
+ if (kstrtoul(str, 0, &cpufreq))
+ return 0;
nuc900_clock_source(NULL, "ext");
--
1.9.3
--
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