diff options
| author | Stefano Stabellini <stefano.stabellini@eu.citrix.com> | 2012-11-08 10:58:55 -0500 |
|---|---|---|
| committer | Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | 2012-11-09 07:48:22 -0500 |
| commit | ab277bbf662ef17ffb7fd8dd7a462a34e326e492 (patch) | |
| tree | aaee1d184e62d8717497787c7d890d348ecb411a | |
| parent | 911dec0db4de6ccc544178a8ddaf9cec0a11d533 (diff) | |
xen/arm: Fix compile errors when drivers are compiled as modules (export more).
The commit 911dec0db4de6ccc544178a8ddaf9cec0a11d533
"xen/arm: Fix compile errors when drivers are compiled as modules." exports
the neccessary functions. But to guard ourselves against out-of-tree modules
and future drivers hitting this, lets export all of the relevant
hypercalls.
Acked-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
Signed-off-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
| -rw-r--r-- | arch/arm/xen/enlighten.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/arch/arm/xen/enlighten.c b/arch/arm/xen/enlighten.c index 96d969da5335..f57609275449 100644 --- a/arch/arm/xen/enlighten.c +++ b/arch/arm/xen/enlighten.c | |||
| @@ -170,4 +170,10 @@ EXPORT_SYMBOL_GPL(free_xenballooned_pages); | |||
| 170 | /* In the hypervisor.S file. */ | 170 | /* In the hypervisor.S file. */ |
| 171 | EXPORT_SYMBOL_GPL(HYPERVISOR_event_channel_op); | 171 | EXPORT_SYMBOL_GPL(HYPERVISOR_event_channel_op); |
| 172 | EXPORT_SYMBOL_GPL(HYPERVISOR_grant_table_op); | 172 | EXPORT_SYMBOL_GPL(HYPERVISOR_grant_table_op); |
| 173 | EXPORT_SYMBOL_GPL(HYPERVISOR_xen_version); | ||
| 174 | EXPORT_SYMBOL_GPL(HYPERVISOR_console_io); | ||
| 175 | EXPORT_SYMBOL_GPL(HYPERVISOR_sched_op); | ||
| 176 | EXPORT_SYMBOL_GPL(HYPERVISOR_hvm_op); | ||
| 177 | EXPORT_SYMBOL_GPL(HYPERVISOR_memory_op); | ||
| 178 | EXPORT_SYMBOL_GPL(HYPERVISOR_physdev_op); | ||
| 173 | EXPORT_SYMBOL_GPL(privcmd_call); | 179 | EXPORT_SYMBOL_GPL(privcmd_call); |
