Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 268544
b: refs/heads/master
c: bcd9a1e
h: refs/heads/master
v: v3
  • Loading branch information
Johannes Thumshirn authored and Greg Kroah-Hartman committed Sep 27, 2011
1 parent 2a4319e commit c93a548
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 18 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: de0920b1fedb4d694fe4732cfc3cccfcd4743f84
refs/heads/master: bcd9a1e91fbc293bbbbddd98df687ad2e8027c89
34 changes: 17 additions & 17 deletions trunk/drivers/staging/comedi/drivers/pcmmio.c
Original file line number Diff line number Diff line change
Expand Up @@ -371,15 +371,15 @@ static int pcmmio_attach(struct comedi_device *dev, struct comedi_devconfig *it)
iobase = it->options[0];
irq[0] = it->options[1];

printk("comedi%d: %s: io: %lx ", dev->minor, driver.driver_name,
printk(KERN_INFO "comedi%d: %s: io: %lx ", dev->minor, driver.driver_name,
iobase);

dev->iobase = iobase;

if (!iobase || !request_region(iobase,
thisboard->total_iosize,
driver.driver_name)) {
printk("I/O port conflict\n");
printk(KERN_ERR "I/O port conflict\n");
return -EIO;
}

Expand All @@ -394,7 +394,7 @@ static int pcmmio_attach(struct comedi_device *dev, struct comedi_devconfig *it)
* convenient macro defined in comedidev.h.
*/
if (alloc_private(dev, sizeof(struct pcmmio_private)) < 0) {
printk("cannot allocate private data structure\n");
printk(KERN_ERR "cannot allocate private data structure\n");
return -ENOMEM;
}

Expand All @@ -417,7 +417,7 @@ static int pcmmio_attach(struct comedi_device *dev, struct comedi_devconfig *it)
kcalloc(n_subdevs, sizeof(struct pcmmio_subdev_private),
GFP_KERNEL);
if (!devpriv->sprivs) {
printk("cannot allocate subdevice private data structures\n");
printk(KERN_ERR "cannot allocate subdevice private data structures\n");
return -ENOMEM;
}
/*
Expand All @@ -427,7 +427,7 @@ static int pcmmio_attach(struct comedi_device *dev, struct comedi_devconfig *it)
* Allocate 1 AI + 1 AO + 2 DIO subdevs (24 lines per DIO)
*/
if (alloc_subdevices(dev, n_subdevs) < 0) {
printk("cannot allocate subdevice data structures\n");
printk(KERN_ERR "cannot allocate subdevice data structures\n");
return -ENOMEM;
}

Expand Down Expand Up @@ -557,14 +557,14 @@ static int pcmmio_attach(struct comedi_device *dev, struct comedi_devconfig *it)
*/

if (irq[0]) {
printk("irq: %u ", irq[0]);
printk(KERN_DEBUG "irq: %u ", irq[0]);
if (thisboard->dio_num_asics == 2 && irq[1])
printk("second ASIC irq: %u ", irq[1]);
printk(KERN_DEBUG "second ASIC irq: %u ", irq[1]);
} else {
printk("(IRQ mode disabled) ");
printk(KERN_INFO "(IRQ mode disabled) ");
}

printk("attached\n");
printk(KERN_INFO "attached\n");

return 1;
}
Expand All @@ -581,7 +581,7 @@ static int pcmmio_detach(struct comedi_device *dev)
{
int i;

printk("comedi%d: %s: remove\n", dev->minor, driver.driver_name);
printk(KERN_INFO "comedi%d: %s: remove\n", dev->minor, driver.driver_name);
if (dev->iobase)
release_region(dev->iobase, thisboard->total_iosize);

Expand Down Expand Up @@ -622,7 +622,7 @@ static int pcmmio_dio_insn_bits(struct comedi_device *dev,

#ifdef DAMMIT_ITS_BROKEN
/* DEBUG */
printk("write mask: %08x data: %08x\n", data[0], data[1]);
printk(KERN_DEBUG "write mask: %08x data: %08x\n", data[0], data[1]);
#endif

s->state = 0;
Expand All @@ -644,9 +644,9 @@ static int pcmmio_dio_insn_bits(struct comedi_device *dev,
#ifdef DAMMIT_ITS_BROKEN
/* DEBUG */
printk
("byte %d wmb %02x db %02x offset %02d io %04x, data_in %02x ",
byte_no, (unsigned)write_mask_byte, (unsigned)data_byte,
offset, ioaddr, (unsigned)byte);
(KERN_DEBUG "byte %d wmb %02x db %02x offset %02d io %04x,"
" data_in %02x ", byte_no, (unsigned)write_mask_byte,
(unsigned)data_byte, offset, ioaddr, (unsigned)byte);
#endif

if (write_mask_byte) {
Expand All @@ -663,7 +663,7 @@ static int pcmmio_dio_insn_bits(struct comedi_device *dev,
}
#ifdef DAMMIT_ITS_BROKEN
/* DEBUG */
printk("data_out_byte %02x\n", (unsigned)byte);
printk(KERN_DEBUG "data_out_byte %02x\n", (unsigned)byte);
#endif
/* save the digital input lines for this byte.. */
s->state |= ((unsigned int)byte) << offset;
Expand All @@ -674,7 +674,7 @@ static int pcmmio_dio_insn_bits(struct comedi_device *dev,

#ifdef DAMMIT_ITS_BROKEN
/* DEBUG */
printk("s->state %08x data_out %08x\n", s->state, data[1]);
printk(KERN_DEBUG "s->state %08x data_out %08x\n", s->state, data[1]);
#endif

return 2;
Expand Down Expand Up @@ -886,7 +886,7 @@ static irqreturn_t interrupt_pcmmio(int irq, void *d)
* with commands..
*/
printk
("PCMMIO DEBUG: got edge detect interrupt %d asic %d which_chans: %06x\n",
(KERN_DEBUG "got edge detect interrupt %d asic %d which_chans: %06x\n",
irq, asic, triggered);
for (s = dev->subdevices + 2;
s < dev->subdevices + dev->n_subdevices;
Expand Down

0 comments on commit c93a548

Please sign in to comment.