staging: comedi: das08_isa: rename 'thisboard' variables
authorH Hartley Sweeten <hsweeten@visionengravers.com>
Thu, 18 Jun 2015 17:54:45 +0000 (10:54 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 19 Jun 2015 04:19:01 +0000 (21:19 -0700)
For aesthetics, rename the 'thisboard' variables to 'board'. That name
is more commonly used for the boardinfo pointer in comedi drivers.

Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com>
Reviewed-by: Ian Abbott <abbotti@mev.co.uk>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/comedi/drivers/das08_isa.c

index 2d9a31dab5527632c296de7e38b80e70bec71737..cdefc99b6db30e183e69d6b5b8c87cc3694ab7f8 100644 (file)
@@ -168,7 +168,7 @@ static const struct das08_board_struct das08_isa_boards[] = {
 static int das08_isa_attach(struct comedi_device *dev,
                            struct comedi_devconfig *it)
 {
-       const struct das08_board_struct *thisboard = dev->board_ptr;
+       const struct das08_board_struct *board = dev->board_ptr;
        struct das08_private_struct *devpriv;
        int ret;
 
@@ -176,7 +176,7 @@ static int das08_isa_attach(struct comedi_device *dev,
        if (!devpriv)
                return -ENOMEM;
 
-       ret = comedi_request_region(dev, it->options[0], thisboard->iosize);
+       ret = comedi_request_region(dev, it->options[0], board->iosize);
        if (ret)
                return ret;