Home
last modified time | relevance | path

Searched refs:fnlist (Results 1 – 5 of 5) sorted by relevance

/linux-3.4.99/drivers/isdn/hisax/
Dfsm.c25 FsmNew(struct Fsm *fsm, struct FsmNode *fnlist, int fncount) in FsmNew() argument
35 if ((fnlist[i].state >= fsm->state_count) || (fnlist[i].event >= fsm->event_count)) { in FsmNew()
37 i, (long)fnlist[i].state, (long)fsm->state_count, in FsmNew()
38 (long)fnlist[i].event, (long)fsm->event_count); in FsmNew()
40 fsm->jumpmatrix[fsm->state_count * fnlist[i].event + in FsmNew()
41 fnlist[i].state] = (FSMFNPTR)fnlist[i].routine; in FsmNew()
Dfsm.h50 int FsmNew(struct Fsm *fsm, struct FsmNode *fnlist, int fncount);
Dcallc.c769 static struct FsmNode fnlist[] __initdata = variable
844 return FsmNew(&callcfsm, fnlist, ARRAY_SIZE(fnlist)); in CallcNew()
Dhisax.h1276 int FsmNew(struct Fsm *fsm, struct FsmNode *fnlist, int fncount);
/linux-3.4.99/drivers/isdn/mISDN/
Dfsm.c31 struct FsmNode *fnlist, int fncount) in mISDN_FsmNew() argument
39 if ((fnlist[i].state >= fsm->state_count) || in mISDN_FsmNew()
40 (fnlist[i].event >= fsm->event_count)) { in mISDN_FsmNew()
43 i, (long)fnlist[i].state, (long)fsm->state_count, in mISDN_FsmNew()
44 (long)fnlist[i].event, (long)fsm->event_count); in mISDN_FsmNew()
46 fsm->jumpmatrix[fsm->state_count * fnlist[i].event + in mISDN_FsmNew()
47 fnlist[i].state] = (FSMFNPTR) fnlist[i].routine; in mISDN_FsmNew()