[dahdi-commits] tzafrir: linux/trunk r10054 - /linux/trunk/drivers/dahdi/xpp/xbus-core.h

SVN commits to the DAHDI project dahdi-commits at lists.digium.com
Wed Jul 20 11:49:34 CDT 2011


Author: tzafrir
Date: Wed Jul 20 11:49:31 2011
New Revision: 10054

URL: http://svnview.digium.com/svn/dahdi?view=rev&rev=10054
Log:
xpp: make quirk bit flags unsigned

This avoids a nag about a meaningless single-bit signed int.

Signed-off-by: Tzafrir Cohen <tzafrir.cohen at xorcom.com>

Modified:
    linux/trunk/drivers/dahdi/xpp/xbus-core.h

Modified: linux/trunk/drivers/dahdi/xpp/xbus-core.h
URL: http://svnview.digium.com/svn/dahdi/linux/trunk/drivers/dahdi/xpp/xbus-core.h?view=diff&rev=10054&r1=10053&r2=10054
==============================================================================
--- linux/trunk/drivers/dahdi/xpp/xbus-core.h (original)
+++ linux/trunk/drivers/dahdi/xpp/xbus-core.h Wed Jul 20 11:49:31 2011
@@ -208,8 +208,8 @@
 	int			cpu_rcv_tasklet[NR_CPUS];
 
 	struct quirks {
-		int	has_fxo:1;
-		int	has_digital_span:1;
+		unsigned int has_fxo:1;
+		unsigned int has_digital_span:1;
 	}			quirks;
 	bool			self_ticking;
 	enum sync_mode		sync_mode;




More information about the dahdi-commits mailing list