From 8339140b5ce729e7690a192d3cd278369b85dfb0 Mon Sep 17 00:00:00 2001 From: Alec Davis Date: Thu, 29 Jul 2010 22:30:35 +0000 Subject: add curly braces to _write_8bits git-svn-id: http://svn.asterisk.org/svn/dahdi/linux/trunk@9059 a0bf4364-ded3-4de4-8d8a-66a801d63aff --- drivers/dahdi/wctdm.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'drivers/dahdi/wctdm.c') diff --git a/drivers/dahdi/wctdm.c b/drivers/dahdi/wctdm.c index 5f3fc92..6b86c18 100644 --- a/drivers/dahdi/wctdm.c +++ b/drivers/dahdi/wctdm.c @@ -468,10 +468,11 @@ static inline void __write_8bits(struct wctdm *wc, unsigned char bits) outb(wc->ios, wc->ioaddr + WC_AUXD); for (x=0;x<8;x++) { /* Send out each bit, MSB first, drop SCLK as we do so */ - if (bits & 0x80) + if (bits & 0x80) { wc->ios |= BIT_SDI; - else + } else { wc->ios &= ~BIT_SDI; + } wc->ios &= ~BIT_SCLK; outb(wc->ios, wc->ioaddr + WC_AUXD); -- cgit v1.2.3