]> Pileus Git - ~andy/linux/commitdiff
staging: comedi: das08_cs: remove thisboard macro
authorH Hartley Sweeten <hartleys@visionengravers.com>
Mon, 2 Jul 2012 22:48:58 +0000 (15:48 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 6 Jul 2012 22:51:20 +0000 (15:51 -0700)
The 'thisboard' macro relies on a local variable having a specific
name and yields a pointer derived from that local variable. Replace
the macro with a local variable where used. Use the comedi_board()
helper to get the pointer.

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

index 9ec9b122f9793a9e4ab48f5e1bbacce780727f3e..f5700de7b6c05bc1121404e5494114a80eb87d8b 100644 (file)
@@ -60,11 +60,10 @@ Command support does not exist, but could be added for this board.
 
 static struct pcmcia_device *cur_dev;
 
-#define thisboard ((const struct das08_board_struct *)dev->board_ptr)
-
 static int das08_cs_attach(struct comedi_device *dev,
                           struct comedi_devconfig *it)
 {
+       const struct das08_board_struct *thisboard = comedi_board(dev);
        int ret;
        unsigned long iobase;
        struct pcmcia_device *link = cur_dev;   /*  XXX hack */