Commit ae554a89 authored by Kai Germaschewski's avatar Kai Germaschewski

ISDN: Export all hisax symbols from drivers/isdn/hisax/config.o

As a courtesy to s390, remove drivers/isdn/hisax/fsm.o from
$(export-objs), so that it doesn't clash with the S390 fsm.o, which
is exporting symbols as well ;)
parent 44d13453
......@@ -6,7 +6,7 @@ EXTRA_CFLAGS += -DHISAX_MAX_CARDS=$(CONFIG_HISAX_MAX_CARDS)
# Objects that export symbols.
export-objs := config.o fsm.o hisax_isac.o hisax_hscx.o
export-objs := config.o hisax_isac.o hisax_hscx.o
# Each configuration option enables a list of files.
......
......@@ -2152,3 +2152,11 @@ MODULE_DEVICE_TABLE(pci, hisax_pci_tbl);
module_init(HiSax_init);
module_exit(HiSax_exit);
EXPORT_SYMBOL(FsmNew);
EXPORT_SYMBOL(FsmFree);
EXPORT_SYMBOL(FsmEvent);
EXPORT_SYMBOL(FsmChangeState);
EXPORT_SYMBOL(FsmInitTimer);
EXPORT_SYMBOL(FsmDelTimer);
EXPORT_SYMBOL(FsmRestartTimer);
......@@ -21,14 +21,6 @@
#define FSM_TIMER_DEBUG 0
EXPORT_SYMBOL(FsmNew);
EXPORT_SYMBOL(FsmFree);
EXPORT_SYMBOL(FsmEvent);
EXPORT_SYMBOL(FsmChangeState);
EXPORT_SYMBOL(FsmInitTimer);
EXPORT_SYMBOL(FsmDelTimer);
EXPORT_SYMBOL(FsmRestartTimer);
int __init
FsmNew(struct Fsm *fsm, struct FsmNode *fnlist, int fncount)
{
......
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