summaryrefslogtreecommitdiffstats
path: root/drivers/isdn/hisax/isdnl3.h
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>1998-05-07 02:55:41 +0000
committerRalf Baechle <ralf@linux-mips.org>1998-05-07 02:55:41 +0000
commitdcec8a13bf565e47942a1751a9cec21bec5648fe (patch)
tree548b69625b18cc2e88c3e68d0923be546c9ebb03 /drivers/isdn/hisax/isdnl3.h
parent2e0f55e79c49509b7ff70ff1a10e1e9e90a3dfd4 (diff)
o Merge with Linux 2.1.99.
o Fix ancient bug in the ELF loader making ldd crash. o Fix ancient bug in the keyboard code for SGI, SNI and Jazz.
Diffstat (limited to 'drivers/isdn/hisax/isdnl3.h')
-rw-r--r--drivers/isdn/hisax/isdnl3.h27
1 files changed, 18 insertions, 9 deletions
diff --git a/drivers/isdn/hisax/isdnl3.h b/drivers/isdn/hisax/isdnl3.h
index bed989a18..2ff582b4a 100644
--- a/drivers/isdn/hisax/isdnl3.h
+++ b/drivers/isdn/hisax/isdnl3.h
@@ -1,6 +1,12 @@
-/* $Id: isdnl3.h,v 1.3 1997/04/06 22:54:17 keil Exp $
- *
+/* $Id: isdnl3.h,v 2.0 1997/07/27 21:15:42 keil Exp $
+
* $Log: isdnl3.h,v $
+ * Revision 2.0 1997/07/27 21:15:42 keil
+ * New Callref based layer3
+ *
+ * Revision 1.4 1997/06/26 11:20:57 keil
+ * ?
+ *
* Revision 1.3 1997/04/06 22:54:17 keil
* Using SKB's
*
@@ -24,15 +30,18 @@
#define L3_DEB_CHARGE 0x08
struct stateentry {
- int state;
- u_char primitive;
- void (*rout) (struct PStack *, u_char, void *);
+ int state;
+ u_char primitive;
+ void (*rout) (struct l3_process *, u_char, void *);
};
extern void l3_debug(struct PStack *st, char *s);
-extern void newl3state(struct PStack *st, int state);
-extern void L3InitTimer(struct PStack *st, struct L3Timer *t);
+extern void newl3state(struct l3_process *pc, int state);
+extern void L3InitTimer(struct l3_process *pc, struct L3Timer *t);
extern void L3DelTimer(struct L3Timer *t);
-extern int L3AddTimer(struct L3Timer *t, int millisec, int event);
-extern void StopAllL3Timer(struct PStack *st);
+extern int L3AddTimer(struct L3Timer *t, int millisec, int event);
+extern void StopAllL3Timer(struct l3_process *pc);
extern struct sk_buff *l3_alloc_skb(int len);
+extern struct l3_process *new_l3_process(struct PStack *st, int cr);
+extern void release_l3_process(struct l3_process *p);
+extern struct l3_process *getl3proc(struct PStack *st, int cr);