Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 141571
b: refs/heads/master
c: 72e7b74
h: refs/heads/master
i:
  141569: f3536f9
  141567: 314dd18
v: v3
  • Loading branch information
Bill Pemberton authored and Greg Kroah-Hartman committed Apr 3, 2009
1 parent 083bfe7 commit abc6821
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 0ff297c4ebf5f7119e928d74a9d952158d329aca
refs/heads/master: 72e7b74d505f901450e92d873dd3605a57435c1a
8 changes: 4 additions & 4 deletions trunk/drivers/staging/comedi/drivers/contec_pci_dio.c
Original file line number Diff line number Diff line change
Expand Up @@ -42,16 +42,16 @@ typedef enum contec_model {
PIO1616L = 0,
} contec_model;

typedef struct contec_board {
struct contec_board {
const char *name;
int model;
int in_ports;
int out_ports;
int in_offs;
int out_offs;
int out_boffs;
} contec_board;
static const contec_board contec_boards[] = {
};
static const struct contec_board contec_boards[] = {
{"PIO1616L", PIO1616L, 16, 16, 0, 2, 10},
};

Expand All @@ -64,7 +64,7 @@ static DEFINE_PCI_DEVICE_TABLE(contec_pci_table) = {

MODULE_DEVICE_TABLE(pci, contec_pci_table);

#define thisboard ((const contec_board *)dev->board_ptr)
#define thisboard ((const struct contec_board *)dev->board_ptr)

typedef struct {
int data;
Expand Down

0 comments on commit abc6821

Please sign in to comment.