[svn-commits] sruffell: linux/trunk r9044 - /linux/trunk/drivers/dahdi/wctdm.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Wed Jul 28 10:32:18 CDT 2010


Author: sruffell
Date: Wed Jul 28 10:32:07 2010
New Revision: 9044

URL: http://svnview.digium.com/svn/dahdi?view=rev&rev=9044
Log:
wctdm: Fix signed one-bit fields.

Thanks sparse.

Modified:
    linux/trunk/drivers/dahdi/wctdm.c

Modified: linux/trunk/drivers/dahdi/wctdm.c
URL: http://svnview.digium.com/svn/dahdi/linux/trunk/drivers/dahdi/wctdm.c?view=diff&rev=9044&r1=9043&r2=9044
==============================================================================
--- linux/trunk/drivers/dahdi/wctdm.c (original)
+++ linux/trunk/drivers/dahdi/wctdm.c Wed Jul 28 10:32:07 2010
@@ -252,10 +252,10 @@
 			int mwisendtype;
 			struct dahdi_vmwi_info vmwisetting;
 			int vmwi_active_messages;
-			int vmwi_lrev:1;		/* MWI Line Reversal*/
-			int vmwi_hvdc:1;		/* MWI High Voltage DC Idle line */
-			int vmwi_hvac:1;		/* MWI Neon High Voltage AC Idle line */
-			int neonringing:1; /* Ring Generator is set for NEON */
+			u32 vmwi_lrev:1; /*MWI Line Reversal*/
+			u32 vmwi_hvdc:1; /*MWI High Voltage DC Idle line*/
+			u32 vmwi_hvac:1; /*MWI Neon High Voltage AC Idle line*/
+			u32 neonringing:1; /*Ring Generator is set for NEON*/
 			struct calregs calregs;
 		} fxs;
 	} mod[NUM_CARDS];




More information about the svn-commits mailing list