]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
staging: comedi: pcmuio: replace comedi_board() calls
authorIan Abbott <abbotti@mev.co.uk>
Tue, 9 Sep 2014 10:26:54 +0000 (11:26 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 11 Sep 2014 21:32:53 +0000 (14:32 -0700)
The `comedi_board(dev)` inline function calls just return
`dev->board_ptr`.  Expand the inline function calls.

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>
drivers/staging/comedi/drivers/pcmuio.c

index 1bca3fba09500e2913a0b40f4517872b36176b3e..3aedeca325134dfb2381fc9fe26fb7c14a204ee5 100644 (file)
@@ -279,7 +279,7 @@ static int pcmuio_dio_insn_config(struct comedi_device *dev,
 
 static void pcmuio_reset(struct comedi_device *dev)
 {
-       const struct pcmuio_board *board = comedi_board(dev);
+       const struct pcmuio_board *board = dev->board_ptr;
        int asic;
 
        for (asic = 0; asic < board->num_asics; ++asic) {
@@ -587,7 +587,7 @@ static int pcmuio_cmdtest(struct comedi_device *dev,
 
 static int pcmuio_attach(struct comedi_device *dev, struct comedi_devconfig *it)
 {
-       const struct pcmuio_board *board = comedi_board(dev);
+       const struct pcmuio_board *board = dev->board_ptr;
        struct comedi_subdevice *s;
        struct pcmuio_private *devpriv;
        int ret;