projects
/
GitHub
/
exynos8895
/
android_kernel_samsung_universal8895.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
65d406a
)
[PATCH] Add missing export of getnstimeofday()
author
Takashi Iwai
<tiwai@suse.de>
Fri, 14 Oct 2005 22:59:03 +0000
(15:59 -0700)
committer
Linus Torvalds
<torvalds@g5.osdl.org>
Sat, 15 Oct 2005 00:10:12 +0000
(17:10 -0700)
Adds the missing EXPORT_SYMBOL_GPL for getnstimeofday() when
CONFIG_TIME_INTERPOLATION isn't set. Needed by drivers/char/mmtimer.c
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
kernel/time.c
patch
|
blob
|
blame
|
history
diff --git
a/kernel/time.c
b/kernel/time.c
index dd5ae1162a8f4623a624b2930ac07df52a648180..40c2410ac99ab15b80a7e3b6c5ed8477460de7a7 100644
(file)
--- a/
kernel/time.c
+++ b/
kernel/time.c
@@
-570,6
+570,7
@@
void getnstimeofday(struct timespec *tv)
tv->tv_sec = x.tv_sec;
tv->tv_nsec = x.tv_usec * NSEC_PER_USEC;
}
+EXPORT_SYMBOL_GPL(getnstimeofday);
#endif
#if (BITS_PER_LONG < 64)