提交 27bf0bc9 编写于 作者: M Mark 提交者: Greg Kroah-Hartman

Staging: comedi: Cleanup on dmm32at.c from checkpatch.pl

This patch cleans up some style issues in dmm32at.c as found by checkpatch.pl
Signed-off-by: NMark Rankilor <reodge@gmail.com>
Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
上级 97feeef5
...@@ -299,12 +299,14 @@ static int dmm32at_attach(struct comedi_device *dev, ...@@ -299,12 +299,14 @@ static int dmm32at_attach(struct comedi_device *dev,
iobase = it->options[0]; iobase = it->options[0];
irq = it->options[1]; irq = it->options[1];
printk("comedi%d: dmm32at: attaching\n", dev->minor); printk(KERN_INFO "comedi%d: dmm32at: attaching\n", dev->minor);
printk("dmm32at: probing at address 0x%04lx, irq %u\n", iobase, irq); printk(KERN_DEBUG "dmm32at: probing at address 0x%04lx, irq %u\n",
iobase, irq);
/* register address space */ /* register address space */
if (!request_region(iobase, DMM32AT_MEMSIZE, thisboard->name)) { if (!request_region(iobase, DMM32AT_MEMSIZE, thisboard->name)) {
printk("I/O port conflict\n"); printk(KERN_ERR "comedi%d: dmm32at: I/O port conflict\n",
dev->minor);
return -EIO; return -EIO;
} }
dev->iobase = iobase; dev->iobase = iobase;
...@@ -342,14 +344,15 @@ static int dmm32at_attach(struct comedi_device *dev, ...@@ -342,14 +344,15 @@ static int dmm32at_attach(struct comedi_device *dev,
intstat = dmm_inb(dev, DMM32AT_INTCLOCK); intstat = dmm_inb(dev, DMM32AT_INTCLOCK);
airback = dmm_inb(dev, DMM32AT_AIRBACK); airback = dmm_inb(dev, DMM32AT_AIRBACK);
printk("dmm32at: lo=0x%02x hi=0x%02x fifostat=0x%02x\n", printk(KERN_DEBUG "dmm32at: lo=0x%02x hi=0x%02x fifostat=0x%02x\n",
ailo, aihi, fifostat); ailo, aihi, fifostat);
printk("dmm32at: aistat=0x%02x intstat=0x%02x airback=0x%02x\n", printk(KERN_DEBUG
"dmm32at: aistat=0x%02x intstat=0x%02x airback=0x%02x\n",
aistat, intstat, airback); aistat, intstat, airback);
if ((ailo != 0x00) || (aihi != 0x1f) || (fifostat != 0x80) || if ((ailo != 0x00) || (aihi != 0x1f) || (fifostat != 0x80) ||
(aistat != 0x60 || (intstat != 0x00) || airback != 0x0c)) { (aistat != 0x60 || (intstat != 0x00) || airback != 0x0c)) {
printk("dmmat32: board detection failed\n"); printk(KERN_ERR "dmmat32: board detection failed\n");
return -EIO; return -EIO;
} }
...@@ -357,7 +360,7 @@ static int dmm32at_attach(struct comedi_device *dev, ...@@ -357,7 +360,7 @@ static int dmm32at_attach(struct comedi_device *dev,
if (irq) { if (irq) {
ret = request_irq(irq, dmm32at_isr, 0, thisboard->name, dev); ret = request_irq(irq, dmm32at_isr, 0, thisboard->name, dev);
if (ret < 0) { if (ret < 0) {
printk("irq conflict\n"); printk(KERN_ERR "dmm32at: irq conflict\n");
return ret; return ret;
} }
dev->irq = irq; dev->irq = irq;
...@@ -441,7 +444,7 @@ static int dmm32at_attach(struct comedi_device *dev, ...@@ -441,7 +444,7 @@ static int dmm32at_attach(struct comedi_device *dev,
} }
/* success */ /* success */
printk("comedi%d: dmm32at: attached\n", dev->minor); printk(KERN_INFO "comedi%d: dmm32at: attached\n", dev->minor);
return 1; return 1;
...@@ -457,7 +460,7 @@ static int dmm32at_attach(struct comedi_device *dev, ...@@ -457,7 +460,7 @@ static int dmm32at_attach(struct comedi_device *dev,
*/ */
static int dmm32at_detach(struct comedi_device *dev) static int dmm32at_detach(struct comedi_device *dev)
{ {
printk("comedi%d: dmm32at: remove\n", dev->minor); printk(KERN_INFO "comedi%d: dmm32at: remove\n", dev->minor);
if (dev->irq) if (dev->irq)
free_irq(dev->irq, dev); free_irq(dev->irq, dev);
if (dev->iobase) if (dev->iobase)
...@@ -505,7 +508,7 @@ static int dmm32at_ai_rinsn(struct comedi_device *dev, ...@@ -505,7 +508,7 @@ static int dmm32at_ai_rinsn(struct comedi_device *dev,
break; break;
} }
if (i == 40000) { if (i == 40000) {
printk("timeout\n"); printk(KERN_WARNING "dmm32at: timeout\n");
return -ETIMEDOUT; return -ETIMEDOUT;
} }
...@@ -520,7 +523,7 @@ static int dmm32at_ai_rinsn(struct comedi_device *dev, ...@@ -520,7 +523,7 @@ static int dmm32at_ai_rinsn(struct comedi_device *dev,
break; break;
} }
if (i == 40000) { if (i == 40000) {
printk("timeout\n"); printk(KERN_WARNING "dmm32at: timeout\n");
return -ETIMEDOUT; return -ETIMEDOUT;
} }
...@@ -590,7 +593,8 @@ static int dmm32at_ai_cmdtest(struct comedi_device *dev, ...@@ -590,7 +593,8 @@ static int dmm32at_ai_cmdtest(struct comedi_device *dev,
if (err) if (err)
return 1; return 1;
/* step 2: make sure trigger sources are unique and mutually compatible */ /* step 2: make sure trigger sources are unique and mutually
* compatible */
/* note that mutual compatibility is not an issue here */ /* note that mutual compatibility is not an issue here */
if (cmd->scan_begin_src != TRIG_TIMER && if (cmd->scan_begin_src != TRIG_TIMER &&
...@@ -763,7 +767,8 @@ static int dmm32at_ai_cmd(struct comedi_device *dev, struct comedi_subdevice *s) ...@@ -763,7 +767,8 @@ static int dmm32at_ai_cmd(struct comedi_device *dev, struct comedi_subdevice *s)
if (cmd->stop_src == TRIG_COUNT) if (cmd->stop_src == TRIG_COUNT)
devpriv->ai_scans_left = cmd->stop_arg; devpriv->ai_scans_left = cmd->stop_arg;
else { /* TRIG_NONE */ else { /* TRIG_NONE */
devpriv->ai_scans_left = 0xffffffff; /* indicates TRIG_NONE to isr */ devpriv->ai_scans_left = 0xffffffff; /* indicates TRIG_NONE to
* isr */
} }
/* wait for circuit to settle */ /* wait for circuit to settle */
...@@ -773,7 +778,7 @@ static int dmm32at_ai_cmd(struct comedi_device *dev, struct comedi_subdevice *s) ...@@ -773,7 +778,7 @@ static int dmm32at_ai_cmd(struct comedi_device *dev, struct comedi_subdevice *s)
break; break;
} }
if (i == 40000) { if (i == 40000) {
printk("timeout\n"); printk(KERN_WARNING "dmm32at: timeout\n");
return -ETIMEDOUT; return -ETIMEDOUT;
} }
...@@ -900,7 +905,7 @@ static int dmm32at_ao_winsn(struct comedi_device *dev, ...@@ -900,7 +905,7 @@ static int dmm32at_ao_winsn(struct comedi_device *dev,
break; break;
} }
if (i == 40000) { if (i == 40000) {
printk("timeout\n"); printk(KERN_WARNING "dmm32at: timeout\n");
return -ETIMEDOUT; return -ETIMEDOUT;
} }
/* dummy read to update trigger the output */ /* dummy read to update trigger the output */
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册