aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/arch/arm/mach-pxa/viper.c
diff options
context:
space:
mode:
authorDaniel Walter <dwalter@google.com>2014-08-08 14:23:54 -0700
committerLinus Torvalds <torvalds@linux-foundation.org>2014-08-08 15:57:27 -0700
commit4fce45b44bdbf293bc1aed5526e4da90f32eb8eb (patch)
tree0d973e6c570ef7e2d36b295842cf08f7a3a90430 /arch/arm/mach-pxa/viper.c
parentarch/arm/mach-omap2: replace strict_strto* with kstrto* (diff)
downloadwireguard-linux-4fce45b44bdbf293bc1aed5526e4da90f32eb8eb.tar.xz
wireguard-linux-4fce45b44bdbf293bc1aed5526e4da90f32eb8eb.zip
arch/arm/mach-pxa: replace strict_strto call with kstrto
Replace obsolete call to strict_strto with kstrto Signed-off-by: Daniel Walter <dwalter@google.com> Cc: Eric Miao <eric.y.miao@gmail.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to '')
-rw-r--r--arch/arm/mach-pxa/viper.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-pxa/viper.c b/arch/arm/mach-pxa/viper.c
index 41f27f667ca8..de3b08073fe7 100644
--- a/arch/arm/mach-pxa/viper.c
+++ b/arch/arm/mach-pxa/viper.c
@@ -769,7 +769,7 @@ static unsigned long viper_tpm;
static int __init viper_tpm_setup(char *str)
{
- return strict_strtoul(str, 10, &viper_tpm) >= 0;
+ return kstrtoul(str, 10, &viper_tpm) >= 0;
}
__setup("tpm=", viper_tpm_setup);