diff options
author | Chris Metcalf <cmetcalf@tilera.com> | 2013-02-01 15:06:06 -0500 |
---|---|---|
committer | Chris Metcalf <cmetcalf@tilera.com> | 2013-02-08 13:20:36 -0500 |
commit | 7c63e1ee0afe0e957292463cfa111ba59193ab2f (patch) | |
tree | c09b8cf9c175e2603fba83a9e11258382fd0d496 /arch/tile/lib/exports.c | |
parent | 4cfe7629be069d6e951694fecf76f9221badc638 (diff) | |
download | linux-7c63e1ee0afe0e957292463cfa111ba59193ab2f.tar.gz linux-7c63e1ee0afe0e957292463cfa111ba59193ab2f.tar.bz2 linux-7c63e1ee0afe0e957292463cfa111ba59193ab2f.zip |
tile: export a handful of symbols appropriately
This was shown up by running with "allmodconfig". I used
EXPORT_SYMBOL() to match existing conventions in files that
were already exporting symbols, or that were exported that way
by other architectures, and otherwise EXPORT_SYMBOL_GPL().
Signed-off-by: Chris Metcalf <cmetcalf@tilera.com>
Diffstat (limited to 'arch/tile/lib/exports.c')
-rw-r--r-- | arch/tile/lib/exports.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/tile/lib/exports.c b/arch/tile/lib/exports.c index dd5f0a33fdaf..4385cb6fa00a 100644 --- a/arch/tile/lib/exports.c +++ b/arch/tile/lib/exports.c @@ -55,6 +55,8 @@ EXPORT_SYMBOL(hv_dev_poll_cancel); EXPORT_SYMBOL(hv_dev_close); EXPORT_SYMBOL(hv_sysconf); EXPORT_SYMBOL(hv_confstr); +EXPORT_SYMBOL(hv_get_rtc); +EXPORT_SYMBOL(hv_set_rtc); /* libgcc.a */ uint32_t __udivsi3(uint32_t dividend, uint32_t divisor); |