From: Hans Verkuil Date: Fri, 23 Apr 2010 17:18:04 +0000 (-0400) Subject: lib/vsprintf.c: add missing EXPORT_SYMBOL(simple_strtoll) X-Git-Tag: v3.0~5131 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=98d5ce0d0044666fc85a01915a1d22407eb546fd;p=platform%2Fkernel%2Flinux-amlogic.git lib/vsprintf.c: add missing EXPORT_SYMBOL(simple_strtoll) Add a missing EXPORT_SYMBOL. I must be the first person that wants to use this function :-) Signed-off-by: Hans Verkuil Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/lib/vsprintf.c b/lib/vsprintf.c index 7376b7c..46d34b0 100644 --- a/lib/vsprintf.c +++ b/lib/vsprintf.c @@ -118,6 +118,7 @@ long long simple_strtoll(const char *cp, char **endp, unsigned int base) return simple_strtoull(cp, endp, base); } +EXPORT_SYMBOL(simple_strtoll); /** * strict_strtoul - convert a string to an unsigned long strictly