mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-20 04:03:51 +07:00
Staging: Comedi adv_pci1710: Combined two conditions
Combined two if statements making the code cleaner, removing one level of indentation. Signed-off-by: Tomas Melin <tomas.melin@iki.fi> Acked-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
2e0031dd90
commit
583d823160
@ -1168,12 +1168,11 @@ static int check_channel_list(struct comedi_device *dev,
|
||||
for (i = 1, seglen = 1; i < n_chan; i++, seglen++) {
|
||||
if (chanlist[0] == chanlist[i])
|
||||
break; /* we detected a loop, stop */
|
||||
if (CR_CHAN(chanlist[i]) & 1)
|
||||
if (CR_AREF(chanlist[i]) == AREF_DIFF) {
|
||||
comedi_error(dev,
|
||||
"Odd channel cannot be differential input!\n");
|
||||
return 0;
|
||||
}
|
||||
if ((CR_CHAN(chanlist[i]) & 1) &&
|
||||
(CR_AREF(chanlist[i]) == AREF_DIFF)) {
|
||||
comedi_error(dev, "Odd channel cannot be differential input!\n");
|
||||
return 0;
|
||||
}
|
||||
nowmustbechan =
|
||||
(CR_CHAN(chansegment[i - 1]) + 1) % s->n_chan;
|
||||
if (CR_AREF(chansegment[i - 1]) == AREF_DIFF)
|
||||
|
Loading…
Reference in New Issue
Block a user