Staging: comedi: fix printk issue in dt3000.c
This is a patch to the dt3000.c file that fixes up a printk warning found by the checkpatch.pl tool. Converted printks to dev_<levels>. 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
5cf76a8bf8
commit
750d80bdac
|
@ -669,21 +669,21 @@ static int dt3k_ai_cmd(struct comedi_device *dev, struct comedi_subdevice *s)
|
||||||
tscandiv = dt3k_ns_to_timer(100, &cmd->scan_begin_arg,
|
tscandiv = dt3k_ns_to_timer(100, &cmd->scan_begin_arg,
|
||||||
cmd->flags & TRIG_ROUND_MASK);
|
cmd->flags & TRIG_ROUND_MASK);
|
||||||
writew((tscandiv >> 16), devpriv->io_addr + DPR_Params(3));
|
writew((tscandiv >> 16), devpriv->io_addr + DPR_Params(3));
|
||||||
printk("param[3]=0x%04x\n", tscandiv >> 16);
|
dev_dbg(dev->hw_dev, "param[3]=0x%04x\n", tscandiv >> 16);
|
||||||
writew((tscandiv & 0xffff), devpriv->io_addr + DPR_Params(4));
|
writew((tscandiv & 0xffff), devpriv->io_addr + DPR_Params(4));
|
||||||
printk("param[4]=0x%04x\n", tscandiv & 0xffff);
|
dev_dbg(dev->hw_dev, "param[4]=0x%04x\n", tscandiv & 0xffff);
|
||||||
} else {
|
} else {
|
||||||
/* not supported */
|
/* not supported */
|
||||||
}
|
}
|
||||||
|
|
||||||
mode = DT3000_AD_RETRIG_INTERNAL | 0 | 0;
|
mode = DT3000_AD_RETRIG_INTERNAL | 0 | 0;
|
||||||
writew(mode, devpriv->io_addr + DPR_Params(5));
|
writew(mode, devpriv->io_addr + DPR_Params(5));
|
||||||
printk("param[5]=0x%04x\n", mode);
|
dev_dbg(dev->hw_dev, "param[5]=0x%04x\n", mode);
|
||||||
writew(aref == AREF_DIFF, devpriv->io_addr + DPR_Params(6));
|
writew(aref == AREF_DIFF, devpriv->io_addr + DPR_Params(6));
|
||||||
printk("param[6]=0x%04x\n", aref == AREF_DIFF);
|
dev_dbg(dev->hw_dev, "param[6]=0x%04x\n", aref == AREF_DIFF);
|
||||||
|
|
||||||
writew(AI_FIFO_DEPTH / 2, devpriv->io_addr + DPR_Params(7));
|
writew(AI_FIFO_DEPTH / 2, devpriv->io_addr + DPR_Params(7));
|
||||||
printk("param[7]=0x%04x\n", AI_FIFO_DEPTH / 2);
|
dev_dbg(dev->hw_dev, "param[7]=0x%04x\n", AI_FIFO_DEPTH / 2);
|
||||||
|
|
||||||
writew(SUBS_AI, devpriv->io_addr + DPR_SubSys);
|
writew(SUBS_AI, devpriv->io_addr + DPR_SubSys);
|
||||||
ret = dt3k_send_cmd(dev, CMD_CONFIG);
|
ret = dt3k_send_cmd(dev, CMD_CONFIG);
|
||||||
|
|
Loading…
Reference in New Issue