diff options
author | Michael Hsu <mhsu@nvidia.com> | 2010-01-05 14:22:34 -0800 |
---|---|---|
committer | Michael Hsu <mhsu@nvidia.com> | 2010-01-05 17:58:22 -0800 |
commit | 80e29e5095c93722ce953c61cbd2d34cdcc478f5 (patch) | |
tree | 8873e077402ebef7908ad1f553527bf1049ebe16 /arch/arm/mach-tegra/Makefile | |
parent | 68fb5afd36f7a52dda43e429106ea8108de1b6e3 (diff) |
Export Tegra-specific functions for use by kernel loadable modules.
Tegra has functions which aren't exposed by standard linux drivers
(NvRM/NvOS API). Make these functions available to kernel loadable
modules, using the EXPORT_SYMBOL macro.
Change-Id: I6cd85d41727540e49a0272e9173bd84675840c88
Diffstat (limited to 'arch/arm/mach-tegra/Makefile')
-rw-r--r-- | arch/arm/mach-tegra/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/arm/mach-tegra/Makefile b/arch/arm/mach-tegra/Makefile index 6af036933d1a..84fcff9cd12d 100644 --- a/arch/arm/mach-tegra/Makefile +++ b/arch/arm/mach-tegra/Makefile @@ -16,6 +16,9 @@ obj-y += irq_gpio.o obj-y += timer.o obj-y += tegra_sysmap.o +# Export symbols used by loadable modules +obj-y += tegra_exports.o + # Linux CPU frequency scaling interface obj-$(CONFIG_CPU_FREQ) += cpufreq.o |