diff options
| author | Andrew Morton <[email protected]> | 2006-01-09 20:52:24 -0800 |
|---|---|---|
| committer | Linus Torvalds <[email protected]> | 2006-01-10 08:01:35 -0800 |
| commit | 199e7056895c8427dec63e1d9841ceafcfaaf314 (patch) | |
| tree | b59eca8403ca504287228dde91d6f7aeb67b8c12 /kernel | |
| parent | f4818900fa3ee1c56e96f6dede7cc4c05ed383d1 (diff) | |
[PATCH] hrtimer: export deinlined mktime
This is now uninlined, but some modules use it.
Make it a non-GPL export, since the inlined mktime() was also available that
way.
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
Signed-off-by: Thomas Gleixner <[email protected]>
Signed-off-by: Ingo Molnar <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
Diffstat (limited to 'kernel')
| -rw-r--r-- | kernel/time.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/kernel/time.c b/kernel/time.c index a0502aef43ce..bbc8ca194b59 100644 --- a/kernel/time.c +++ b/kernel/time.c @@ -619,6 +619,8 @@ mktime(const unsigned int year0, const unsigned int mon0, )*60 + sec; /* finally seconds */ } +EXPORT_SYMBOL(mktime); + /** * set_normalized_timespec - set timespec sec and nsec parts and normalize * |