Commit 281b6e75 authored by H Hartley Sweeten's avatar H Hartley Sweeten Committed by Greg Kroah-Hartman
Browse files

staging: comedi: pcl818: remove function trace noise



These kernel messages are just added noise. Remove them.

Signed-off-by: default avatarH Hartley Sweeten <hsweeten@visionengravers.com>
Cc: Ian Abbott <abbotti@mev.co.uk>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 1dcea26a
Loading
Loading
Loading
Loading
+0 −7
Original line number Diff line number Diff line
@@ -761,8 +761,6 @@ static int pcl818_ai_cmd_mode(int mode, struct comedi_device *dev,
	int divisor1 = 0, divisor2 = 0;
	unsigned int seglen;

	dev_dbg(dev->class_dev, "pcl818_ai_cmd_mode()\n");

	if (devpriv->irq_blocked)
		return -EBUSY;

@@ -841,7 +839,6 @@ static int pcl818_ai_cmd_mode(int mode, struct comedi_device *dev,

	start_pacer(dev, mode, divisor1, divisor2);

	dev_dbg(dev->class_dev, "pcl818_ai_cmd_mode() end\n");
	return 0;
}

@@ -1049,7 +1046,6 @@ static int ai_cmd(struct comedi_device *dev, struct comedi_subdevice *s)
	struct comedi_cmd *cmd = &s->async->cmd;
	int retval;

	dev_dbg(dev->class_dev, "pcl818_ai_cmd()\n");
	devpriv->ai_n_chan = cmd->chanlist_len;
	devpriv->ai_chanlist = cmd->chanlist;
	devpriv->ai_flags = cmd->flags;
@@ -1066,7 +1062,6 @@ static int ai_cmd(struct comedi_device *dev, struct comedi_subdevice *s)
		if (cmd->convert_src == TRIG_TIMER) {	/*  mode 1 */
			devpriv->ai_timer1 = cmd->convert_arg;
			retval = pcl818_ai_cmd_mode(1, dev, s);
			dev_dbg(dev->class_dev, "pcl818_ai_cmd() end\n");
			return retval;
		}
		if (cmd->convert_src == TRIG_EXT) {	/*  mode 3 */
@@ -1087,7 +1082,6 @@ static int pcl818_ai_cancel(struct comedi_device *dev,
	struct pcl818_private *devpriv = dev->private;

	if (devpriv->irq_blocked > 0) {
		dev_dbg(dev->class_dev, "pcl818_ai_cancel()\n");
		devpriv->irq_was_now_closed = 1;

		switch (devpriv->ai_mode) {
@@ -1131,7 +1125,6 @@ static int pcl818_ai_cancel(struct comedi_device *dev,
	}

end:
	dev_dbg(dev->class_dev, "pcl818_ai_cancel() end\n");
	return 0;
}