Skip to content

Commit

Permalink
staging: comedi: rtd520: cleanup the boardinfo
Browse files Browse the repository at this point in the history
Remove a couple unnecessary comments. For aesthetic reasons, add
some whitespace to the boardinfo to improve readability.

Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com>
Cc: Ian Abbott <abbotti@mev.co.uk>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
  • Loading branch information
H Hartley Sweeten authored and Greg Kroah-Hartman committed Jul 16, 2012
1 parent feb153f commit 3cdefc9
Showing 1 changed file with 17 additions and 21 deletions.
38 changes: 17 additions & 21 deletions 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 3cdefc9

Please sign in to comment.