Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 141558
b: refs/heads/master
c: 3281a63
h: refs/heads/master
v: v3
  • Loading branch information
Bill Pemberton authored and Greg Kroah-Hartman committed Apr 3, 2009
1 parent b529bd7 commit e49ccdc
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 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: b3e8fa97c454246be2bc6f4ddf20951c5b74bc22
refs/heads/master: 3281a63d0b1eecbb21848c3e123c2fc0cd1d4a80
10 changes: 5 additions & 5 deletions trunk/drivers/staging/comedi/drivers/cb_das16_cs.c
Original file line number Diff line number Diff line change
Expand Up @@ -54,12 +54,12 @@ Status: experimental
#define DAS16CS_CTR_CONTROL 14
#define DAS16CS_DIO 16

typedef struct das16cs_board_struct {
struct das16cs_board {
const char *name;
int device_id;
int n_ao_chans;
} das16cs_board;
static const das16cs_board das16cs_boards[] = {
};
static const struct das16cs_board das16cs_boards[] = {
{
device_id:0x0000,/* unknown */
name: "PC-CARD DAS16/16",
Expand All @@ -78,7 +78,7 @@ static const das16cs_board das16cs_boards[] = {
};

#define n_boards (sizeof(das16cs_boards)/sizeof(das16cs_boards[0]))
#define thisboard ((const das16cs_board *)dev->board_ptr)
#define thisboard ((const struct das16cs_board *)dev->board_ptr)

typedef struct {
struct pcmcia_device *link;
Expand Down Expand Up @@ -146,7 +146,7 @@ static int get_prodid(struct comedi_device * dev, struct pcmcia_device *link)
return prodid;
}

static const das16cs_board *das16cs_probe(struct comedi_device * dev,
static const struct das16cs_board *das16cs_probe(struct comedi_device * dev,
struct pcmcia_device *link)
{
int id;
Expand Down

0 comments on commit e49ccdc

Please sign in to comment.