staging: comedi: fix missing parentheses

Add missing parentheses.

Signed-off-by: Roel Kluin <roel.kluin@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
Roel Kluin 2009-05-14 13:58:26 +02:00 committed by Greg Kroah-Hartman
parent c3e2354e37
commit f764df88f8

View file

@ -460,9 +460,9 @@ static int pcl818_ao_insn_write(struct comedi_device *dev, struct comedi_subdevi
for (n = 0; n < insn->n; n++) {
devpriv->ao_readback[chan] = data[n];
outb((data[n] & 0x000f) << 4, dev->iobase +
(chan) ? PCL718_DA2_LO : PCL818_DA_LO);
(chan ? PCL718_DA2_LO : PCL818_DA_LO));
outb((data[n] & 0x0ff0) >> 4, dev->iobase +
(chan) ? PCL718_DA2_HI : PCL818_DA_HI);
(chan ? PCL718_DA2_HI : PCL818_DA_HI));
}
return n;