9
0
Fork 0

vsprintf: fix EXPORT_SYMBOL typo on simple_strtoull

Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
This commit is contained in:
Jean-Christophe PLAGNIOL-VILLARD 2012-07-25 09:47:30 +02:00 committed by Sascha Hauer
parent 1e3d002d5a
commit 3890f77ebe
1 changed files with 1 additions and 1 deletions

View File

@ -83,7 +83,7 @@ unsigned long long simple_strtoull (const char *cp, char **endp, unsigned int ba
*endp = (char *) cp;
return result;
}
EXPORT_SYMBOL(simple_strtoll);
EXPORT_SYMBOL(simple_strtoull);
/* we use this so that we can do without the ctype library */
#define is_digit(c) ((c) >= '0' && (c) <= '9')