[svn-commits] sruffell: linux/trunk r6932 - /linux/trunk/drivers/dahdi/wctdm24xxp/

SVN commits to the Digium repositories svn-commits at lists.digium.com
Tue Aug 4 11:22:39 CDT 2009


Author: sruffell
Date: Tue Aug  4 11:22:36 2009
New Revision: 6932

URL: http://svn.asterisk.org/svn-view/dahdi?view=rev&rev=6932
Log:
wctdm24xxp: txints and rxints duplicate intcount. Remove them.

Modified:
    linux/trunk/drivers/dahdi/wctdm24xxp/base.c
    linux/trunk/drivers/dahdi/wctdm24xxp/wctdm24xxp.h

Modified: linux/trunk/drivers/dahdi/wctdm24xxp/base.c
URL: http://svn.asterisk.org/svn-view/dahdi/linux/trunk/drivers/dahdi/wctdm24xxp/base.c?view=diff&rev=6932&r1=6931&r2=6932
==============================================================================
--- linux/trunk/drivers/dahdi/wctdm24xxp/base.c (original)
+++ linux/trunk/drivers/dahdi/wctdm24xxp/base.c Tue Aug  4 11:22:36 2009
@@ -1765,7 +1765,6 @@
 static void handle_receive(void* vbb, void* context)
 {
 	struct wctdm *wc = context;
-	wc->rxints++;
 	wctdm_receiveprep(wc, vbb);
 }
 
@@ -1773,7 +1772,6 @@
 {
 	struct wctdm *wc = context;
 	memset(vbb, 0, SFRAME_SIZE);
-	wc->txints++;
 	wctdm_transmitprep(wc, vbb);
 	wctdm_isr_misc(wc);
 	wc->intcount++;

Modified: linux/trunk/drivers/dahdi/wctdm24xxp/wctdm24xxp.h
URL: http://svn.asterisk.org/svn-view/dahdi/linux/trunk/drivers/dahdi/wctdm24xxp/wctdm24xxp.h?view=diff&rev=6932&r1=6931&r2=6932
==============================================================================
--- linux/trunk/drivers/dahdi/wctdm24xxp/wctdm24xxp.h (original)
+++ linux/trunk/drivers/dahdi/wctdm24xxp/wctdm24xxp.h Tue Aug  4 11:22:36 2009
@@ -145,8 +145,6 @@
 	char board_name[80];
 	struct dahdi_span span;
 	unsigned int intcount;
-	unsigned int rxints;
-	unsigned int txints;
 	unsigned char txident;
 	unsigned char rxident;
 	int pos;




More information about the svn-commits mailing list