From da0a5be4f5f357d61de3abdb0bd84861a769b8f1 Mon Sep 17 00:00:00 2001 From: Daniel Walter Date: Thu, 26 Jun 2014 10:43:14 +1000 Subject: [PATCH] arch/arm/mach-s3c24xx/mach-jive.c: replace strict_strto* with kstrto* Replace obsolete strict_strto call with kstrto Signed-off-by: Daniel Walter Cc: Ben Dooks Signed-off-by: Andrew Morton --- arch/arm/mach-s3c24xx/mach-jive.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm/mach-s3c24xx/mach-jive.c b/arch/arm/mach-s3c24xx/mach-jive.c index e81ea82c55f9..bac9bb5fa265 100644 --- a/arch/arm/mach-s3c24xx/mach-jive.c +++ b/arch/arm/mach-s3c24xx/mach-jive.c @@ -243,7 +243,7 @@ static int __init jive_mtdset(char *options) if (options == NULL || options[0] == '\0') return 0; - if (strict_strtoul(options, 10, &set)) { + if (kstrtoul(options, 10, &set)) { printk(KERN_ERR "failed to parse mtdset=%s\n", options); return 0; } -- 2.39.5