From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752331AbaEZWIT (ORCPT ); Mon, 26 May 2014 18:08:19 -0400 Received: from mail-wi0-f169.google.com ([209.85.212.169]:58024 "EHLO mail-wi0-f169.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751406AbaEZWIR (ORCPT ); Mon, 26 May 2014 18:08:17 -0400 Date: Mon, 26 May 2014 23:08:13 +0100 From: Daniel Walter To: linux-kernel@vger.kernel.org Cc: mcuos.com@gmail.com, richard@nod.at Subject: [PATCH 05/12] [arch/arm/mach-w90x900] Remove obsolete strict_strto calls Message-ID: <20140526220813.GG25779@google.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Daniel Walter Subject: [PATCH 05/12] [arch/arm/mach-w90x900] replace obsolete strict_strto Replace obsolete strict_strto with kstrto calls Signed-off-by: Daniel Walter --- 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