summaryrefslogtreecommitdiff
path: root/drivers/dahdi/wctdm.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/dahdi/wctdm.c')
-rw-r--r--drivers/dahdi/wctdm.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/dahdi/wctdm.c b/drivers/dahdi/wctdm.c
index 6b86c18..5f3fc92 100644
--- a/drivers/dahdi/wctdm.c
+++ b/drivers/dahdi/wctdm.c
@@ -468,11 +468,10 @@ 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);