Skip to content

Commit

Permalink
staging: comedi: ni_65xx: convert printk() to dev_...()
Browse files Browse the repository at this point in the history
Convert the `printk()` calls in this drivers to use the `dev_...()`
calls instead.  Remove the initial `printk()` call in the comedi
`attach()` handler (`ni_65xx_attach()`) as it's a bit redundant - the
board type and contents of a board ID register are printed later in the
function.

Signed-off-by: Ian Abbott <abbotti@mev.co.uk>
Reviewed-by: H Hartley Sweeten <hsweeten@visionengravers.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
  • Loading branch information
Ian Abbott authored and Greg Kroah-Hartman committed Sep 17, 2012
1 parent 372959d commit 0e5789f
Showing 1 changed file with 4 additions and 12 deletions.
16 changes: 4 additions & 12 deletions drivers/staging/comedi/drivers/ni_65xx.c
Original file line number Diff line number Diff line change
Expand Up @@ -453,11 +453,9 @@ static int ni_65xx_dio_insn_bits(struct comedi_device *dev,
writeb(bits,
private(dev)->mite->daq_io_addr +
Port_Data(port));
/* printk("wrote 0x%x to port %i\n", bits, port); */
}
port_read_bits =
readb(private(dev)->mite->daq_io_addr + Port_Data(port));
/* printk("read 0x%x from port %i\n", port_read_bits, port); */
if (s->type == COMEDI_SUBD_DO && board(dev)->invert_outputs) {
/* Outputs inverted, so invert value read back from
* DO subdevice. (Does not apply to boards with DIO
Expand Down Expand Up @@ -651,8 +649,6 @@ static int ni_65xx_attach(struct comedi_device *dev,
unsigned i;
int ret;

printk(KERN_INFO "comedi%d: ni_65xx:", dev->minor);

ret = alloc_private(dev, sizeof(struct ni_65xx_private));
if (ret < 0)
return ret;
Expand All @@ -663,15 +659,13 @@ static int ni_65xx_attach(struct comedi_device *dev,

ret = mite_setup(private(dev)->mite);
if (ret < 0) {
printk(KERN_WARNING "error setting up mite\n");
dev_warn(dev->class_dev, "error setting up mite\n");
return ret;
}

dev->board_name = board(dev)->name;
dev->irq = mite_irq(private(dev)->mite);
printk(KERN_INFO " %s", dev->board_name);

printk(KERN_INFO " ID=0x%02x",
dev_info(dev->class_dev, "board: %s, ID=0x%02x", dev->board_name,
readb(private(dev)->mite->daq_io_addr + ID_Register));

ret = comedi_alloc_subdevices(dev, 4);
Expand Down Expand Up @@ -772,11 +766,9 @@ static int ni_65xx_attach(struct comedi_device *dev,
"ni_65xx", dev);
if (ret < 0) {
dev->irq = 0;
printk(KERN_WARNING " irq not available");
dev_warn(dev->class_dev, "irq not available\n");
}

printk("\n");

return 0;
}

Expand Down Expand Up @@ -825,7 +817,7 @@ static int ni_65xx_find_device(struct comedi_device *dev, int bus, int slot)
}
}
}
printk(KERN_WARNING "no device found\n");
dev_warn(dev->class_dev, "no device found\n");
mite_list_devices();
return -EIO;
}
Expand Down

0 comments on commit 0e5789f

Please sign in to comment.