Commit 5c2432cb authored by Daniel Walter's avatar Daniel Walter Committed by Linus Torvalds
Browse files

arch/arm/mach-s3c24xx/mach-jive.c: replace strict_strto* with kstrto*



Replace obsolete strict_strto call with kstrto

Signed-off-by: default avatarDaniel Walter <dwalter@google.com>
Cc: Ben Dooks <ben-linux@fluff.org>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 4fce45b4
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
	}