Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/netisdn g/c unused var bch from a few places



details:   https://anonhg.NetBSD.org/src/rev/d9515835f440
branches:  trunk
changeset: 552811:d9515835f440
user:      pooka <pooka%NetBSD.org@localhost>
date:      Fri Oct 03 16:47:57 2003 +0000

description:
g/c unused var bch from a few places

diffstat:

 sys/netisdn/i4b_capi_l4if.c |  10 ++++------
 1 files changed, 4 insertions(+), 6 deletions(-)

diffs (42 lines):

diff -r ab46d64af5e2 -r d9515835f440 sys/netisdn/i4b_capi_l4if.c
--- a/sys/netisdn/i4b_capi_l4if.c       Fri Oct 03 16:46:32 2003 +0000
+++ b/sys/netisdn/i4b_capi_l4if.c       Fri Oct 03 16:47:57 2003 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: i4b_capi_l4if.c,v 1.3 2003/10/03 16:38:44 pooka Exp $  */
+/*     $NetBSD: i4b_capi_l4if.c,v 1.4 2003/10/03 16:47:57 pooka Exp $  */
 
 /*
  * Copyright (c) 2001-2003 Cubical Solutions Ltd. All rights reserved.
@@ -30,7 +30,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: i4b_capi_l4if.c,v 1.3 2003/10/03 16:38:44 pooka Exp $");
+__KERNEL_RCSID(0, "$NetBSD: i4b_capi_l4if.c,v 1.4 2003/10/03 16:47:57 pooka Exp $");
 
 #include <sys/param.h>
 #include <sys/kernel.h>
@@ -267,10 +267,9 @@
 n_connect_response(call_desc_t *cd, int response, int cause)
 {
     capi_softc_t *sc;
-    int bch, s;
+    int s;
 
     sc = cd->l3drv->l1_token;
-    bch = cd->channelid;
 
     T400_stop(cd);
 
@@ -292,10 +291,9 @@
 n_disconnect_request(call_desc_t *cd, int cause)
 {
     capi_softc_t *sc;
-    int bch, s;
+    int s;
 
     sc = cd->l3drv->l1_token;
-    bch = cd->channelid;
 
     cd->cause_out = cause;
 



Home | Main Index | Thread Index | Old Index