Commit f631a784 authored by Linus Torvalds's avatar Linus Torvalds
parents 13ffc32e c5b61d59
...@@ -2030,7 +2030,7 @@ release_l2(struct layer2 *l2) ...@@ -2030,7 +2030,7 @@ release_l2(struct layer2 *l2)
skb_queue_purge(&l2->down_queue); skb_queue_purge(&l2->down_queue);
ReleaseWin(l2); ReleaseWin(l2);
if (test_bit(FLG_LAPD, &l2->flag)) { if (test_bit(FLG_LAPD, &l2->flag)) {
release_tei(l2); TEIrelease(l2);
if (l2->ch.st) if (l2->ch.st)
l2->ch.st->dev->D.ctrl(&l2->ch.st->dev->D, l2->ch.st->dev->D.ctrl(&l2->ch.st->dev->D,
CLOSE_CHANNEL, NULL); CLOSE_CHANNEL, NULL);
......
...@@ -96,7 +96,7 @@ extern int tei_l2(struct layer2 *, u_int, u_long arg); ...@@ -96,7 +96,7 @@ extern int tei_l2(struct layer2 *, u_int, u_long arg);
/* from tei.c */ /* from tei.c */
extern int l2_tei(struct layer2 *, u_int, u_long arg); extern int l2_tei(struct layer2 *, u_int, u_long arg);
extern void release_tei(struct layer2 *); extern void TEIrelease(struct layer2 *);
extern int TEIInit(u_int *); extern int TEIInit(u_int *);
extern void TEIFree(void); extern void TEIFree(void);
......
...@@ -945,7 +945,7 @@ l2_tei(struct layer2 *l2, u_int cmd, u_long arg) ...@@ -945,7 +945,7 @@ l2_tei(struct layer2 *l2, u_int cmd, u_long arg)
} }
void void
release_tei(struct layer2 *l2) TEIrelease(struct layer2 *l2)
{ {
struct teimgr *tm = l2->tm; struct teimgr *tm = l2->tm;
u_long flags; u_long flags;
......
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