summaryrefslogtreecommitdiff
path: root/drivers/dahdi/wctdm.c
diff options
context:
space:
mode:
authorShaun Ruffell <sruffell@digium.com>2010-07-28 15:32:07 +0000
committerShaun Ruffell <sruffell@digium.com>2010-07-28 15:32:07 +0000
commite4ccd105d001c07223307502f39be63b86806272 (patch)
treedacee9446dcd26a973bde573190d4f717f96b9d6 /drivers/dahdi/wctdm.c
parente28950a7f77cae5a8f0d7c214d0f1c41a61e11eb (diff)
wctdm: Fix signed one-bit fields.
Thanks sparse. git-svn-id: http://svn.asterisk.org/svn/dahdi/linux/trunk@9044 a0bf4364-ded3-4de4-8d8a-66a801d63aff
Diffstat (limited to 'drivers/dahdi/wctdm.c')
-rw-r--r--drivers/dahdi/wctdm.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/dahdi/wctdm.c b/drivers/dahdi/wctdm.c
index 9f4d1ea..5f3fc92 100644
--- a/drivers/dahdi/wctdm.c
+++ b/drivers/dahdi/wctdm.c
@@ -252,10 +252,10 @@ struct wctdm {
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];