From 51251affff3c98e9bbf6b018a16bf9675ad8fdc5 Mon Sep 17 00:00:00 2001 From: Eldad Zack Date: Mon, 17 Dec 2012 16:03:05 -0800 Subject: [PATCH] --- yaml --- r: 346455 b: refs/heads/master c: 462e471107624fe9bd8b6353ac13e06305c3f3fd h: refs/heads/master i: 346453: 4ec71dece4b6575d9d0dff22d0a0352ccc4bd6e7 346451: c4f6b08c6136efd626dcd01eff29202453448a14 346447: 63ec31ae3189eea483fc7b77c0dacb0160ab3cb5 v: v3 --- [refs] | 2 +- trunk/lib/vsprintf.c | 8 ++++++++ 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/[refs] b/[refs] index ebef7aa7be83..ad4496783203 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: 4c925d6031f719fad6ea8b1c94a636f4c0fea39b +refs/heads/master: 462e471107624fe9bd8b6353ac13e06305c3f3fd diff --git a/trunk/lib/vsprintf.c b/trunk/lib/vsprintf.c index 292fcb174a32..fab33a9c5318 100644 --- a/trunk/lib/vsprintf.c +++ b/trunk/lib/vsprintf.c @@ -38,6 +38,8 @@ * @cp: The start of the string * @endp: A pointer to the end of the parsed string will be placed here * @base: The number base to use + * + * This function is obsolete. Please use kstrtoull instead. */ unsigned long long simple_strtoull(const char *cp, char **endp, unsigned int base) { @@ -61,6 +63,8 @@ EXPORT_SYMBOL(simple_strtoull); * @cp: The start of the string * @endp: A pointer to the end of the parsed string will be placed here * @base: The number base to use + * + * This function is obsolete. Please use kstrtoul instead. */ unsigned long simple_strtoul(const char *cp, char **endp, unsigned int base) { @@ -73,6 +77,8 @@ EXPORT_SYMBOL(simple_strtoul); * @cp: The start of the string * @endp: A pointer to the end of the parsed string will be placed here * @base: The number base to use + * + * This function is obsolete. Please use kstrtol instead. */ long simple_strtol(const char *cp, char **endp, unsigned int base) { @@ -88,6 +94,8 @@ EXPORT_SYMBOL(simple_strtol); * @cp: The start of the string * @endp: A pointer to the end of the parsed string will be placed here * @base: The number base to use + * + * This function is obsolete. Please use kstrtoll instead. */ long long simple_strtoll(const char *cp, char **endp, unsigned int base) {