diff options
author | Bernd Porr <mail@berndporr.me.uk> | 2014-01-07 16:43:43 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2014-01-09 13:51:54 -0500 |
commit | 2783980525df12b9c49e8b4baaff06abc7f2f8f2 (patch) | |
tree | 2b1998800ee7c5da706bd0d177c819fbcfac05d1 /drivers/staging | |
parent | 7a45ae6edf808821a9799eccd9043177463aa05f (diff) |
staging: comedi: usbduxsigma: removing unneccesay attached info
Comedi core now reports that a device has been attached so that
the driver itself won't need to do it any longer. The driver now
just outputs the offset of the ADC converter which is a soft indicator
of the health of the board and also the user can grep this value
from the kernel log easier for debugging purposes.
Signed-off-by: Bernd Porr <mail@berndporr.me.uk>
Reviewed-by: Ian Abbott <abbotti@mev.co.uk>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging')
-rw-r--r-- | drivers/staging/comedi/drivers/usbduxsigma.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/comedi/drivers/usbduxsigma.c b/drivers/staging/comedi/drivers/usbduxsigma.c index ff521b3a07d0..3beeb1254152 100644 --- a/drivers/staging/comedi/drivers/usbduxsigma.c +++ b/drivers/staging/comedi/drivers/usbduxsigma.c | |||
@@ -1661,7 +1661,7 @@ static int usbduxsigma_auto_attach(struct comedi_device *dev, | |||
1661 | return offset; | 1661 | return offset; |
1662 | } | 1662 | } |
1663 | 1663 | ||
1664 | dev_info(dev->class_dev, "attached, ADC_zero = %x\n", offset); | 1664 | dev_info(dev->class_dev, "ADC_zero = %x\n", offset); |
1665 | 1665 | ||
1666 | return 0; | 1666 | return 0; |
1667 | } | 1667 | } |