staging: comedi: pcl816: replace comedi_board() calls
authorIan Abbott <abbotti@mev.co.uk>
Tue, 9 Sep 2014 10:26:51 +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/pcl816.c

index 54732c5cab97a88aa5796daf56709f1ce5b85709..aa648713201789a6a0fb5e21cc0f43661de3c009 100644 (file)
@@ -671,7 +671,7 @@ static void pcl816_reset(struct comedi_device *dev)
 
 static int pcl816_attach(struct comedi_device *dev, struct comedi_devconfig *it)
 {
-       const struct pcl816_board *board = comedi_board(dev);
+       const struct pcl816_board *board = dev->board_ptr;
        struct pcl816_private *devpriv;
        struct comedi_subdevice *s;
        int ret;
This page took 0.039555 seconds and 5 git commands to generate.