Skip to content

Commit

Permalink
Staging: comedi: Remove das16_board typedef
Browse files Browse the repository at this point in the history
Signed-off-by: Bill Pemberton <wfp5p@virginia.edu>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Bill Pemberton authored and Greg Kroah-Hartman committed Apr 3, 2009
1 parent d896146 commit 947a33f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions drivers/staging/comedi/drivers/das16.c
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,7 @@ static unsigned int das16_suggest_transfer_size(struct comedi_device * dev,

static void reg_dump(struct comedi_device * dev);

typedef struct das16_board_struct {
struct das16_board {
const char *name;
void *ai;
unsigned int ai_nbits;
Expand All @@ -371,9 +371,9 @@ typedef struct das16_board_struct {

unsigned int size;
unsigned int id;
} das16_board;
};

static const struct das16_board_struct das16_boards[] = {
static const struct das16_board das16_boards[] = {
{
name: "das-16",
ai: das16_ai_rinsn,
Expand Down Expand Up @@ -696,7 +696,7 @@ static const struct das16_board_struct das16_boards[] = {
#endif
};

#define n_das16_boards ((sizeof(das16_boards))/(sizeof(das16_board)))
#define n_das16_boards ((sizeof(das16_boards))/(sizeof(struct das16_board)))

static int das16_attach(struct comedi_device * dev, struct comedi_devconfig * it);
static int das16_detach(struct comedi_device * dev);
Expand Down Expand Up @@ -740,7 +740,7 @@ struct das16_private_struct {
volatile short timer_mode; // true if using timer mode
};
#define devpriv ((struct das16_private_struct *)(dev->private))
#define thisboard ((struct das16_board_struct *)(dev->board_ptr))
#define thisboard ((struct das16_board *)(dev->board_ptr))

static int das16_cmd_test(struct comedi_device * dev, struct comedi_subdevice * s,
struct comedi_cmd * cmd)
Expand Down

0 comments on commit 947a33f

Please sign in to comment.