Fixed two small bugs Ian Abbott pointed out. Ian Wrote:
authorBernd Porr <Bernd.Porr@f2s.com>
Sat, 21 Oct 2006 22:54:30 +0000 (22:54 +0000)
committerBernd Porr <Bernd.Porr@f2s.com>
Sat, 21 Oct 2006 22:54:30 +0000 (22:54 +0000)
commit9b9fd22087d64942cacc895ea024e87c54597bc1
tree4cee36a0b11c9c01a29e20eaf9232a8db0984ec6
parente361896b7ac1d338b115b169b5ed20d43caef861
Fixed two small bugs Ian Abbott pointed out. Ian Wrote:
The first one is just a tiny mistake in usbduxfast_ai_cmdtest():

/* step 3: make sure arguments are trivially compatible */

if(cmd->start_arg == TRIG_NOW && cmd->start_arg != 0)

should be:

if(cmd->start_src == TRIG_NOW && cmd->start_arg != 0)

The other one is a mismatch between cmdtest and cmd.  cmdtest checks
start_src==TRIG_NOW or start_src==TRIG_EXT, but cmd checks
start_src==TRIG_NOW and otherwise assumes start_src==TRIG_INT.
comedi/drivers/usbduxfast.c