Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 175112
b: refs/heads/master
c: efdf83c
h: refs/heads/master
v: v3
  • Loading branch information
Ian Abbott authored and Greg Kroah-Hartman committed Dec 11, 2009
1 parent b58c441 commit 990df82
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 48b1aff5b93521c5ad90842bef52b218ac50a4ab
refs/heads/master: efdf83c1763156220a74c8f2755c1a6fa1e1c26b
4 changes: 3 additions & 1 deletion trunk/drivers/staging/comedi/drivers/pcl816.c
Original file line number Diff line number Diff line change
Expand Up @@ -488,7 +488,9 @@ static int pcl816_ai_cmdtest(struct comedi_device *dev,
if (!cmd->scan_begin_src || tmp != cmd->scan_begin_src)
err++;

if (!(cmd->convert_src & (TRIG_EXT | TRIG_TIMER)))
tmp = cmd->convert_src;
cmd->convert_src &= TRIG_EXT | TRIG_TIMER;
if (!cmd->convert_src || tmp != cmd->convert_src)
err++;

tmp = cmd->scan_end_src;
Expand Down

0 comments on commit 990df82

Please sign in to comment.