projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4fce45b
)
arch/arm/mach-s3c24xx/mach-jive.c: replace strict_strto* with kstrto*
author
Daniel Walter
<dwalter@google.com>
Fri, 8 Aug 2014 21:23:57 +0000
(14:23 -0700)
committer
Linus Torvalds
<torvalds@linux-foundation.org>
Fri, 8 Aug 2014 22:57:28 +0000
(15:57 -0700)
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>
arch/arm/mach-s3c24xx/mach-jive.c
patch
|
blob
|
history
diff --git
a/arch/arm/mach-s3c24xx/mach-jive.c
b/arch/arm/mach-s3c24xx/mach-jive.c
index e81ea82c55f9de9269a680e4d84f7cb710648963..bac9bb5fa2659a9332d7496d743c7901be282c8d 100644
(file)
--- 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 (
k
strtoul(options, 10, &set)) {
printk(KERN_ERR "failed to parse mtdset=%s\n", options);
return 0;
}