Commit aa29ec5f authored by James Hogan's avatar James Hogan

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: default avatarJames Hogan <james.hogan@imgtec.com>
parent 9fb4aa87
......@@ -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)
......
......@@ -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);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment