Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 141592
b: refs/heads/master
c: 65a457a
h: refs/heads/master
v: v3
  • Loading branch information
Bill Pemberton authored and Greg Kroah-Hartman committed Apr 3, 2009
1 parent 328bc95 commit f67bde0
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: 67080790a44f6633acc250db915a4f6481e81ba1
refs/heads/master: 65a457a1496f660a5469e4bb7edbe0195b9d887c
8 changes: 4 additions & 4 deletions trunk/drivers/staging/comedi/drivers/das16m1.c
Original file line number Diff line number Diff line change
Expand Up @@ -152,12 +152,12 @@ static unsigned int das16m1_set_pacer(struct comedi_device * dev, unsigned int n

static int das16m1_irq_bits(unsigned int irq);

typedef struct das16m1_board_struct {
struct das16m1_board {
const char *name;
unsigned int ai_speed;
} das16m1_board;
};

static const das16m1_board das16m1_boards[] = {
static const struct das16m1_board das16m1_boards[] = {
{
name: "cio-das16/m1", // CIO-DAS16_M1.pdf
ai_speed:1000, // 1MHz max speed
Expand Down Expand Up @@ -191,7 +191,7 @@ struct das16m1_private_struct {
unsigned int divisor2; // divides master clock to obtain conversion speed
};
#define devpriv ((struct das16m1_private_struct *)(dev->private))
#define thisboard ((const das16m1_board *)(dev->board_ptr))
#define thisboard ((const struct das16m1_board *)(dev->board_ptr))

COMEDI_INITCLEANUP(driver_das16m1);

Expand Down

0 comments on commit f67bde0

Please sign in to comment.