staging: comedi: das6402: replace comedi_board() calls
authorIan Abbott <abbotti@mev.co.uk>
Tue, 9 Sep 2014 10:26:29 +0000 (11:26 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 11 Sep 2014 21:32:51 +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/das6402.c

index 7d9f26a6e460a02281d211364277ed610e17adf4..ab6e40608885c877e60241ca23debae2ff55ad69 100644 (file)
@@ -434,7 +434,7 @@ static void das6402_reset(struct comedi_device *dev)
 static int das6402_attach(struct comedi_device *dev,
                          struct comedi_devconfig *it)
 {
-       const struct das6402_boardinfo *board = comedi_board(dev);
+       const struct das6402_boardinfo *board = dev->board_ptr;
        struct das6402_private *devpriv;
        struct comedi_subdevice *s;
        int ret;
This page took 0.046733 seconds and 5 git commands to generate.