staging: comedi: amplc_pci230: fix a precedence bug
The addition operation has higher precedence than ?: so this would write
to PCI230_DACOUT1 instead of devpriv->daqio + PCI230_DACOUT1.
Fixes: 4f9c63fe53
('staging: comedi: amplc_pci230: refactor iobase addresses')
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
8075bfb675
commit
94254d1bae
1 changed files with 1 additions and 1 deletions
|
@ -624,7 +624,7 @@ static inline void pci230_ao_write_nofifo(struct comedi_device *dev,
|
|||
|
||||
/* Write mangled datum to appropriate DACOUT register. */
|
||||
outw(pci230_ao_mangle_datum(dev, datum),
|
||||
devpriv->daqio + ((chan) == 0) ? PCI230_DACOUT1 : PCI230_DACOUT2);
|
||||
devpriv->daqio + ((chan == 0) ? PCI230_DACOUT1 : PCI230_DACOUT2));
|
||||
}
|
||||
|
||||
static inline void pci230_ao_write_fifo(struct comedi_device *dev,
|
||||
|
|
Loading…
Add table
Reference in a new issue