mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-03 17:51:57 +09:00
staging: comedi: usbduxfast: remove extra dev_err() messages
A dev_err() message is output if send_dux_commands() fails. Remove the extra dev_err() messages output by the callers. Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com> Cc: Ian Abbott <abbotti@mev.co.uk> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
5659e24a5a
commit
3056b10516
@@ -997,8 +997,6 @@ static int usbduxfast_ai_cmd(struct comedi_device *dev,
|
||||
/* 0 means that the AD commands are sent */
|
||||
result = send_dux_commands(dev, SENDADCOMMANDS);
|
||||
if (result < 0) {
|
||||
dev_err(dev->class_dev,
|
||||
"adc command could not be submitted, aborting\n");
|
||||
up(&devpriv->sem);
|
||||
return result;
|
||||
}
|
||||
@@ -1119,8 +1117,6 @@ static int usbduxfast_ai_insn_read(struct comedi_device *dev,
|
||||
/* 0 means that the AD commands are sent */
|
||||
err = send_dux_commands(dev, SENDADCOMMANDS);
|
||||
if (err < 0) {
|
||||
dev_err(dev->class_dev,
|
||||
"adc command could not be submitted, aborting\n");
|
||||
up(&devpriv->sem);
|
||||
return err;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user