mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-03 18:12:25 -04:00
staging: comedi: c6xdigio: remove commented out function trace messages
These commented out messages are just added noise. Remove them. Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com> Reviewed-by: Ian Abbott <abbotti@mev.co.uk> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
c89d6ea388
commit
4dfe3df9b3
@@ -94,8 +94,6 @@ static void C6X_pwmInit(unsigned long baseAddr)
|
||||
{
|
||||
int timeout = 0;
|
||||
|
||||
/* printk("Inside C6X_pwmInit\n"); */
|
||||
|
||||
WriteByteToHwPort(baseAddr, 0x70);
|
||||
while (((ReadByteFromHwPort(baseAddr + 1) & 0x80) == 0)
|
||||
&& (timeout < C6XDIGIO_TIME_OUT)) {
|
||||
@@ -132,8 +130,6 @@ static void C6X_pwmOutput(unsigned long baseAddr, unsigned channel, int value)
|
||||
int timeout = 0;
|
||||
unsigned tmp;
|
||||
|
||||
/* printk("Inside C6X_pwmOutput\n"); */
|
||||
|
||||
pwm.cmd = value;
|
||||
if (pwm.cmd > 498)
|
||||
pwm.cmd = 498;
|
||||
@@ -200,8 +196,6 @@ static int C6X_encInput(unsigned long baseAddr, unsigned channel)
|
||||
int timeout = 0;
|
||||
int tmp;
|
||||
|
||||
/* printk("Inside C6X_encInput\n"); */
|
||||
|
||||
enc.value = 0;
|
||||
if (channel == 0)
|
||||
ppcmd = 0x48;
|
||||
@@ -295,8 +289,6 @@ static void C6X_encResetAll(unsigned long baseAddr)
|
||||
{
|
||||
unsigned timeout = 0;
|
||||
|
||||
/* printk("Inside C6X_encResetAll\n"); */
|
||||
|
||||
WriteByteToHwPort(baseAddr, 0x68);
|
||||
while (((ReadByteFromHwPort(baseAddr + 1) & 0x80) == 0)
|
||||
&& (timeout < C6XDIGIO_TIME_OUT)) {
|
||||
@@ -330,7 +322,6 @@ static int c6xdigio_pwmo_insn_write(struct comedi_device *dev,
|
||||
int i;
|
||||
int chan = CR_CHAN(insn->chanspec);
|
||||
|
||||
/* printk("c6xdigio_pwmo_insn_write %x\n", insn->n); */
|
||||
for (i = 0; i < insn->n; i++) {
|
||||
C6X_pwmOutput(dev->iobase, chan, data[i]);
|
||||
/* devpriv->ao_readback[chan] = data[i]; */
|
||||
@@ -342,7 +333,6 @@ static int c6xdigio_ei_insn_read(struct comedi_device *dev,
|
||||
struct comedi_subdevice *s,
|
||||
struct comedi_insn *insn, unsigned int *data)
|
||||
{
|
||||
/* printk("c6xdigio_ei__insn_read %x\n", insn->n); */
|
||||
int n;
|
||||
int chan = CR_CHAN(insn->chanspec);
|
||||
|
||||
@@ -354,12 +344,8 @@ static int c6xdigio_ei_insn_read(struct comedi_device *dev,
|
||||
|
||||
static void board_init(struct comedi_device *dev)
|
||||
{
|
||||
|
||||
/* printk("Inside board_init\n"); */
|
||||
|
||||
C6X_pwmInit(dev->iobase);
|
||||
C6X_encResetAll(dev->iobase);
|
||||
|
||||
}
|
||||
|
||||
static const struct pnp_device_id c6xdigio_pnp_tbl[] = {
|
||||
|
||||
Reference in New Issue
Block a user