diff options
author | Stefano Stabellini <stefano.stabellini@eu.citrix.com> | 2012-10-02 10:57:57 -0400 |
---|---|---|
committer | Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | 2012-10-02 12:34:56 -0400 |
commit | 2e3d88602814e5fd5b88d5c73be3305060c473b6 (patch) | |
tree | 56027d63e38a99bdd5d1921a183db86ed770fe45 /drivers | |
parent | 613ad4837964e9b9ea914c74e7d8f57b86b75a52 (diff) |
xen: mark xen_init_IRQ __init
xen_init_IRQ should be marked __init because it calls other functions
marked __init and is always called by functions marked __init (on both
x86 and arm).
Also remove the unused EXPORT_SYMBOL_GPL(xen_init_IRQ).
Both changes were introduced by "xen/arm: receive Xen events on ARM".
Signed-off-by: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
Signed-off-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/xen/events.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/xen/events.c b/drivers/xen/events.c index 8672211555bb..59e10a1286d5 100644 --- a/drivers/xen/events.c +++ b/drivers/xen/events.c | |||
@@ -1802,7 +1802,7 @@ void xen_callback_vector(void) | |||
1802 | void xen_callback_vector(void) {} | 1802 | void xen_callback_vector(void) {} |
1803 | #endif | 1803 | #endif |
1804 | 1804 | ||
1805 | void xen_init_IRQ(void) | 1805 | void __init xen_init_IRQ(void) |
1806 | { | 1806 | { |
1807 | int i; | 1807 | int i; |
1808 | 1808 | ||
@@ -1846,4 +1846,3 @@ void xen_init_IRQ(void) | |||
1846 | } | 1846 | } |
1847 | #endif | 1847 | #endif |
1848 | } | 1848 | } |
1849 | EXPORT_SYMBOL_GPL(xen_init_IRQ); | ||