Commit 387c136a authored by Bill Pemberton's avatar Bill Pemberton Committed by Greg Kroah-Hartman

Staging: comedi: Remove pcmda12_board typedef

Signed-off-by: default avatarBill Pemberton <wfp5p@virginia.edu>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent e15849e5
...@@ -68,9 +68,9 @@ Configuration Options: ...@@ -68,9 +68,9 @@ Configuration Options:
/* /*
* Bords * Bords
*/ */
typedef struct pcmda12_board_struct { struct pcmda12_board {
const char *name; const char *name;
} pcmda12_board; };
/* note these have no effect and are merely here for reference.. /* note these have no effect and are merely here for reference..
these are configured by jumpering the board! */ these are configured by jumpering the board! */
...@@ -81,7 +81,7 @@ static const struct comedi_lrange pcmda12_ranges = { ...@@ -81,7 +81,7 @@ static const struct comedi_lrange pcmda12_ranges = {
} }
}; };
static const pcmda12_board pcmda12_boards[] = { static const struct pcmda12_board pcmda12_boards[] = {
{ {
name: "pcmda12", name: "pcmda12",
}, },
...@@ -90,7 +90,7 @@ static const pcmda12_board pcmda12_boards[] = { ...@@ -90,7 +90,7 @@ static const pcmda12_board pcmda12_boards[] = {
/* /*
* Useful for shorthand access to the particular board structure * Useful for shorthand access to the particular board structure
*/ */
#define thisboard ((const pcmda12_board *)dev->board_ptr) #define thisboard ((const struct pcmda12_board *)dev->board_ptr)
struct pcmda12_private { struct pcmda12_private {
...@@ -136,8 +136,8 @@ static struct comedi_driver driver = { ...@@ -136,8 +136,8 @@ static struct comedi_driver driver = {
* devices are such boards. * devices are such boards.
*/ */
board_name:&pcmda12_boards[0].name, board_name:&pcmda12_boards[0].name,
offset:sizeof(pcmda12_board), offset:sizeof(struct pcmda12_board),
num_names:sizeof(pcmda12_boards) / sizeof(pcmda12_board), num_names:sizeof(pcmda12_boards) / sizeof(struct pcmda12_board),
}; };
static int ao_winsn(struct comedi_device * dev, struct comedi_subdevice * s, static int ao_winsn(struct comedi_device * dev, struct comedi_subdevice * s,
......
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