[merged] arch-arm-mach-pxa-replace-strict_strto-call-with-kstrto.patch removed from -mm tree

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



The patch titled
     Subject: arch/arm/mach-pxa: replace strict_strto call with kstrto
has been removed from the -mm tree.  Its filename was
     arch-arm-mach-pxa-replace-strict_strto-call-with-kstrto.patch

This patch was dropped because it was merged into mainline or a subsystem tree

------------------------------------------------------
From: Daniel Walter <dwalter@xxxxxxxxxx>
Subject: arch/arm/mach-pxa: replace strict_strto call with kstrto

Replace obsolete call to strict_strto with kstrto

Signed-off-by: Daniel Walter <dwalter@xxxxxxxxxx>
Cc: Eric Miao <eric.y.miao@xxxxxxxxx>
Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx>
---

 arch/arm/mach-pxa/balloon3.c |    2 +-
 arch/arm/mach-pxa/viper.c    |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff -puN arch/arm/mach-pxa/balloon3.c~arch-arm-mach-pxa-replace-strict_strto-call-with-kstrto arch/arm/mach-pxa/balloon3.c
--- a/arch/arm/mach-pxa/balloon3.c~arch-arm-mach-pxa-replace-strict_strto-call-with-kstrto
+++ a/arch/arm/mach-pxa/balloon3.c
@@ -90,7 +90,7 @@ int __init parse_balloon3_features(char
 	if (!arg)
 		return 0;
 
-	return strict_strtoul(arg, 0, &balloon3_features_present);
+	return kstrtoul(arg, 0, &balloon3_features_present);
 }
 early_param("balloon3_features", parse_balloon3_features);
 
diff -puN arch/arm/mach-pxa/viper.c~arch-arm-mach-pxa-replace-strict_strto-call-with-kstrto arch/arm/mach-pxa/viper.c
--- a/arch/arm/mach-pxa/viper.c~arch-arm-mach-pxa-replace-strict_strto-call-with-kstrto
+++ a/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);
_

Patches currently in -mm which might be from dwalter@xxxxxxxxxx are

origin.patch
linux-next.patch
include-linux-remove-strict_strto-definitions.patch

--
To unsubscribe from this list: send the line "unsubscribe mm-commits" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html




[Index of Archives]     [Kernel Newbies FAQ]     [Kernel Archive]     [IETF Annouce]     [DCCP]     [Netdev]     [Networking]     [Security]     [Bugtraq]     [Photo]     [Yosemite]     [MIPS Linux]     [ARM Linux]     [Linux Security]     [Linux RAID]     [Linux SCSI]

  Powered by Linux