Staging: comedi: fix printk issue in pcl818.c
This is a patch to the pcl818.c file that fixes up a printk warning found by the checkpatch.pl tool. Converted printks to dev_version. Signed-off-by: Ravishankar Karkala Mallikarjunayya <ravishankar.km@greenturtles.in> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
26ba666c50
commit
c62a0ef42c
@ -1007,7 +1007,7 @@ static int pcl818_ai_cmd_mode(int mode, struct comedi_device *dev,
|
|||||||
int divisor1 = 0, divisor2 = 0;
|
int divisor1 = 0, divisor2 = 0;
|
||||||
unsigned int seglen;
|
unsigned int seglen;
|
||||||
|
|
||||||
printk("pcl818_ai_cmd_mode()\n");
|
dev_dbg(dev->hw_dev, "pcl818_ai_cmd_mode()\n");
|
||||||
if ((!dev->irq) && (!devpriv->dma_rtc)) {
|
if ((!dev->irq) && (!devpriv->dma_rtc)) {
|
||||||
comedi_error(dev, "IRQ not defined!");
|
comedi_error(dev, "IRQ not defined!");
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
@ -1110,7 +1110,7 @@ static int pcl818_ai_cmd_mode(int mode, struct comedi_device *dev,
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
printk("pcl818_ai_cmd_mode() end\n");
|
dev_dbg(dev->hw_dev, "pcl818_ai_cmd_mode() end\n");
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1453,7 +1453,7 @@ static int ai_cmd(struct comedi_device *dev, struct comedi_subdevice *s)
|
|||||||
struct comedi_cmd *cmd = &s->async->cmd;
|
struct comedi_cmd *cmd = &s->async->cmd;
|
||||||
int retval;
|
int retval;
|
||||||
|
|
||||||
printk("pcl818_ai_cmd()\n");
|
dev_dbg(dev->hw_dev, "pcl818_ai_cmd()\n");
|
||||||
devpriv->ai_n_chan = cmd->chanlist_len;
|
devpriv->ai_n_chan = cmd->chanlist_len;
|
||||||
devpriv->ai_chanlist = cmd->chanlist;
|
devpriv->ai_chanlist = cmd->chanlist;
|
||||||
devpriv->ai_flags = cmd->flags;
|
devpriv->ai_flags = cmd->flags;
|
||||||
@ -1471,7 +1471,7 @@ static int ai_cmd(struct comedi_device *dev, struct comedi_subdevice *s)
|
|||||||
if (cmd->convert_src == TRIG_TIMER) { /* mode 1 */
|
if (cmd->convert_src == TRIG_TIMER) { /* mode 1 */
|
||||||
devpriv->ai_timer1 = cmd->convert_arg;
|
devpriv->ai_timer1 = cmd->convert_arg;
|
||||||
retval = pcl818_ai_cmd_mode(1, dev, s);
|
retval = pcl818_ai_cmd_mode(1, dev, s);
|
||||||
printk("pcl818_ai_cmd() end\n");
|
dev_dbg(dev->hw_dev, "pcl818_ai_cmd() end\n");
|
||||||
return retval;
|
return retval;
|
||||||
}
|
}
|
||||||
if (cmd->convert_src == TRIG_EXT) { /* mode 3 */
|
if (cmd->convert_src == TRIG_EXT) { /* mode 3 */
|
||||||
@ -1490,7 +1490,7 @@ static int pcl818_ai_cancel(struct comedi_device *dev,
|
|||||||
struct comedi_subdevice *s)
|
struct comedi_subdevice *s)
|
||||||
{
|
{
|
||||||
if (devpriv->irq_blocked > 0) {
|
if (devpriv->irq_blocked > 0) {
|
||||||
printk("pcl818_ai_cancel()\n");
|
dev_dbg(dev->hw_dev, "pcl818_ai_cancel()\n");
|
||||||
devpriv->irq_was_now_closed = 1;
|
devpriv->irq_was_now_closed = 1;
|
||||||
|
|
||||||
switch (devpriv->ai_mode) {
|
switch (devpriv->ai_mode) {
|
||||||
@ -1540,7 +1540,7 @@ static int pcl818_ai_cancel(struct comedi_device *dev,
|
|||||||
}
|
}
|
||||||
|
|
||||||
end:
|
end:
|
||||||
printk("pcl818_ai_cancel() end\n");
|
dev_dbg(dev->hw_dev, "pcl818_ai_cancel() end\n");
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user