projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
81fa08f
)
lib/vsprintf.c: add missing EXPORT_SYMBOL(simple_strtoll)
author
Hans Verkuil
<hverkuil@xs4all.nl>
Fri, 23 Apr 2010 17:18:04 +0000
(13:18 -0400)
committer
Linus Torvalds
<torvalds@linux-foundation.org>
Sat, 24 Apr 2010 18:31:26 +0000
(11:31 -0700)
Add a missing EXPORT_SYMBOL.
I must be the first person that wants to use this function :-)
Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
lib/vsprintf.c
patch
|
blob
|
history
diff --git
a/lib/vsprintf.c
b/lib/vsprintf.c
index 7376b7c55ffee2d25daaf03d16ee9071339a009a..46d34b0b74a873290b0cd9fcfff6c19561c91de4 100644
(file)
--- 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