aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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)
243 if (options == NULL || options[0] == '\0') 243 if (options == NULL || options[0] == '\0')
244 return 0; 244 return 0;
245 245
246 if (strict_strtoul(options, 10, &set)) { 246 if (kstrtoul(options, 10, &set)) {
247 printk(KERN_ERR "failed to parse mtdset=%s\n", options); 247 printk(KERN_ERR "failed to parse mtdset=%s\n", options);
248 return 0; 248 return 0;
249 } 249 }