Commit 6f88a20a authored by H Hartley Sweeten's avatar H Hartley Sweeten Committed by Greg Kroah-Hartman

staging: comedi: das08_cs: remove thisboard macro

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: default avatarH Hartley Sweeten <hsweeten@visionengravers.com>
Cc: Ian Abbott <abbotti@mev.co.uk>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 6b7de35e
...@@ -60,11 +60,10 @@ Command support does not exist, but could be added for this board. ...@@ -60,11 +60,10 @@ Command support does not exist, but could be added for this board.
static struct pcmcia_device *cur_dev; 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, static int das08_cs_attach(struct comedi_device *dev,
struct comedi_devconfig *it) struct comedi_devconfig *it)
{ {
const struct das08_board_struct *thisboard = comedi_board(dev);
int ret; int ret;
unsigned long iobase; unsigned long iobase;
struct pcmcia_device *link = cur_dev; /* XXX hack */ struct pcmcia_device *link = cur_dev; /* XXX hack */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment