Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 141249
b: refs/heads/master
c: a44522b
h: refs/heads/master
i:
  141247: 6c2c40c
v: v3
  • Loading branch information
Roel Kluin authored and Greg Kroah-Hartman committed Apr 3, 2009
1 parent 15c7c2a commit d508751
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 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: 3f4577bff8b8d03e56f1b62bedca5cd3b18f919a
refs/heads/master: a44522b20d24c1c2f6496106be17bc1fb6448d42
9 changes: 5 additions & 4 deletions trunk/drivers/staging/meilhaus/me6000_ao.c
Original file line number Diff line number Diff line change
Expand Up @@ -2825,10 +2825,11 @@ int inline ao_stop_immediately(me6000_ao_subdevice_t * instance)
int i;
uint32_t single_mask;

single_mask =
(instance->ao_idx - ME6000_AO_SINGLE_STATUS_OFFSET <
0) ? 0x0000 : (0x0001 << (instance->ao_idx -
ME6000_AO_SINGLE_STATUS_OFFSET));
if (instance->ao_idx < ME6000_AO_SINGLE_STATUS_OFFSET)
single_mask = 0x0000;
else
single_mask = 0x0001 << (instance->ao_idx -
ME6000_AO_SINGLE_STATUS_OFFSET);

timeout =
(instance->hardware_stop_delay >
Expand Down

0 comments on commit d508751

Please sign in to comment.