metag: move kick.c exports out of metag_ksyms.c

It's less error prone to have function symbols exported immediately
after the function rather than in metag_ksyms.c. Move each EXPORT_SYMBOL
in metag_ksyms.c for symbols defined in kick.c into kick.c

Signed-off-by: James Hogan <james.hogan@imgtec.com>
This commit is contained in:
James Hogan 2013-02-13 13:01:55 +00:00
parent 9fb4aa8723
commit aa29ec5f79
2 changed files with 3 additions and 2 deletions

View file

@ -25,6 +25,7 @@
* the KICK handlers require access to a CPU's pTBI structure. So we
* pass it as an argument.
*/
#include <linux/export.h>
#include <linux/kernel.h>
#include <linux/mm.h>
#include <linux/types.h>
@ -48,6 +49,7 @@ void kick_register_func(struct kick_irq_handler *kh)
spin_unlock_irqrestore(&kick_handlers_lock, flags);
}
EXPORT_SYMBOL(kick_register_func);
void kick_unregister_func(struct kick_irq_handler *kh)
{
@ -59,6 +61,7 @@ void kick_unregister_func(struct kick_irq_handler *kh)
spin_unlock_irqrestore(&kick_handlers_lock, flags);
}
EXPORT_SYMBOL(kick_unregister_func);
TBIRES
kick_handler(TBIRES State, int SigNum, int Triggers, int Inst, PTBI pTBI)

View file

@ -29,8 +29,6 @@ EXPORT_SYMBOL(__do_clear_user);
EXPORT_SYMBOL(pTBI_get);
EXPORT_SYMBOL(meta_memoffset);
EXPORT_SYMBOL(kick_register_func);
EXPORT_SYMBOL(kick_unregister_func);
EXPORT_SYMBOL(clear_page);
EXPORT_SYMBOL(copy_page);