Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 317967
b: refs/heads/master
c: 3cdefc9
h: refs/heads/master
i:
  317965: 929d028
  317963: 108998a
  317959: b3cd851
  317951: 9b00abd
v: v3
  • Loading branch information
H Hartley Sweeten authored and Greg Kroah-Hartman committed Jul 16, 2012
1 parent 3069627 commit 8bf5ed8
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 22 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: feb153f32688d8f5d79824413dbe3da56986fe6f
refs/heads/master: 3cdefc9276bce7ce77184048d1b5dbee78949689
38 changes: 17 additions & 21 deletions trunk/drivers/staging/comedi/drivers/rtd520.c
Original file line number Diff line number Diff line change
Expand Up @@ -265,11 +265,8 @@ static const struct comedi_lrange rtd_ao_range = {
}
};

/*
Board descriptions
*/
struct rtdBoard {
const char *name; /* must be first */
const char *name;
int device_id;
int aiChans;
int aiBits;
Expand All @@ -280,23 +277,22 @@ struct rtdBoard {

static const struct rtdBoard rtd520Boards[] = {
{
.name = "DM7520",
.device_id = 0x7520,
.aiChans = 16,
.aiBits = 12,
.aiMaxGain = 32,
.range10Start = 6,
.rangeUniStart = 12,
},
{
.name = "PCI4520",
.device_id = 0x4520,
.aiChans = 16,
.aiBits = 12,
.aiMaxGain = 128,
.range10Start = 8,
.rangeUniStart = 16,
},
.name = "DM7520",
.device_id = 0x7520,
.aiChans = 16,
.aiBits = 12,
.aiMaxGain = 32,
.range10Start = 6,
.rangeUniStart = 12,
}, {
.name = "PCI4520",
.device_id = 0x4520,
.aiChans = 16,
.aiBits = 12,
.aiMaxGain = 128,
.range10Start = 8,
.rangeUniStart = 16,
},
};

/*
Expand Down

0 comments on commit 8bf5ed8

Please sign in to comment.