summaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-s3c24xx
diff options
context:
space:
mode:
authorDaniel Walter2014-08-08 23:23:57 +0200
committerLinus Torvalds2014-08-09 00:57:28 +0200
commit5c2432cbe87d693879c11b0e39a32d2528233c64 (patch)
treefa4799e14fe170d20e70b2b7d5c401e1fa97e970 /arch/arm/mach-s3c24xx
parentarch/arm/mach-pxa: replace strict_strto call with kstrto (diff)
downloadkernel-qcow2-linux-5c2432cbe87d693879c11b0e39a32d2528233c64.tar.gz
kernel-qcow2-linux-5c2432cbe87d693879c11b0e39a32d2528233c64.tar.xz
kernel-qcow2-linux-5c2432cbe87d693879c11b0e39a32d2528233c64.zip
arch/arm/mach-s3c24xx/mach-jive.c: replace strict_strto* with kstrto*
Replace obsolete strict_strto call with kstrto Signed-off-by: Daniel Walter <dwalter@google.com> Cc: Ben Dooks <ben-linux@fluff.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/arm/mach-s3c24xx')
-rw-r--r--arch/arm/mach-s3c24xx/mach-jive.c2
1 files changed, 1 insertions, 1 deletions
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;
}