mirror of
https://github.com/torvalds/linux.git
synced 2026-05-23 06:31:58 +02:00
staging: comedi: ni_mio_common: fix build warning
The kbuild test robot detected a build warning causes by commit f878071a.
>> drivers/staging/comedi/drivers/ni_mio_common.c:2274:34:
warning: right-hand operand of comma expression has no effect [-Wunused-value]
That line should have been terminated by ';' and the following line removed.
Not sure why it even builds on my test system...
Reported-by: kbuild test robot
Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com>
Reviewed-by: Ian Abbott <abbotti@mev.co.uk>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
e1099a69a6
commit
1645b55b50
|
|
@ -2268,8 +2268,7 @@ static int ni_ai_cmd(struct comedi_device *dev, struct comedi_subdevice *s)
|
|||
case TRIG_INT:
|
||||
case TRIG_NOW:
|
||||
ai_trig |= NISTC_AI_TRIG_START1_EDGE |
|
||||
NISTC_AI_TRIG_START1_SEL(0),
|
||||
NISTC_AI_TRIG_SEL_REG;
|
||||
NISTC_AI_TRIG_START1_SEL(0);
|
||||
break;
|
||||
case TRIG_EXT:
|
||||
ai_trig |= NISTC_AI_TRIG_START1_SEL(CR_CHAN(cmd->start_arg) +
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user