staging: comedi: comedi_test: convert attach message to dev_info
Convert the 'attach' message from a printk to a dev_info. 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:
parent
b1da49430b
commit
9ac6eb4051
1 changed files with 6 additions and 4 deletions
|
@ -489,10 +489,12 @@ static int waveform_attach(struct comedi_device *dev,
|
|||
devpriv->timer.function = waveform_ai_interrupt;
|
||||
devpriv->timer.data = (unsigned long)dev;
|
||||
|
||||
printk(KERN_INFO "comedi%d: comedi_test: "
|
||||
"%i microvolt, %li microsecond waveform attached\n", dev->minor,
|
||||
dev_info(dev->class_dev,
|
||||
"%s: %i microvolt, %li microsecond waveform attached\n",
|
||||
dev->board_name,
|
||||
devpriv->uvolt_amplitude, devpriv->usec_period);
|
||||
return 1;
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static void waveform_detach(struct comedi_device *dev)
|
||||
|
|
Loading…
Add table
Reference in a new issue