mirror of
https://github.com/torvalds/linux.git
synced 2026-06-10 07:32:29 +02:00
staging: comedi: dt282x: dt282x_ai_insn_read() always fails
commit 2c4283ca7c upstream.
In dt282x_ai_insn_read() we call this macro like:
wait_for(!mux_busy(), comedi_error(dev, "timeout\n"); return -ETIME;);
Because the if statement doesn't have curly braces it means we always
return -ETIME and the function never succeeds.
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Acked-by: Ian Abbott <abbotti@mev.co.uk>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
b11dc97469
commit
b9ba2a5755
|
|
@ -407,8 +407,9 @@ struct dt282x_private {
|
|||
} \
|
||||
udelay(5); \
|
||||
} \
|
||||
if (_i) \
|
||||
if (_i) { \
|
||||
b \
|
||||
} \
|
||||
} while (0)
|
||||
|
||||
static int dt282x_attach(struct comedi_device *dev,
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user