Commit 40faa60b authored by H Hartley Sweeten's avatar H Hartley Sweeten Committed by Greg Kroah-Hartman

staging: comedi: ni_labpc_cs: cleanup the boardinfo declaration

For aesthetic reasons, reformat the boardinfo declaration and
add some whitespace. Remove all the information that is set to
'0' as this is the default.
Signed-off-by: default avatarH Hartley Sweeten <hsweeten@visionengravers.com>
Cc: Ian Abbott <abbotti@mev.co.uk>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 6e4733c3
...@@ -79,33 +79,27 @@ static struct pcmcia_device *pcmcia_cur_dev; ...@@ -79,33 +79,27 @@ static struct pcmcia_device *pcmcia_cur_dev;
static const struct labpc_board_struct labpc_cs_boards[] = { static const struct labpc_board_struct labpc_cs_boards[] = {
{ {
.name = "daqcard-1200", .name = "daqcard-1200",
.device_id = 0x103, /* 0x10b is manufacturer id, .device_id = 0x103,
0x103 is device id */ .ai_speed = 10000,
.ai_speed = 10000, .bustype = pcmcia_bustype,
.bustype = pcmcia_bustype, .register_layout = labpc_1200_layout,
.register_layout = labpc_1200_layout, .has_ao = 1,
.has_ao = 1, .ai_range_table = &range_labpc_1200_ai,
.ai_range_table = &range_labpc_1200_ai, .ai_range_code = labpc_1200_ai_gain_bits,
.ai_range_code = labpc_1200_ai_gain_bits, .ai_range_is_unipolar = labpc_1200_is_unipolar,
.ai_range_is_unipolar = labpc_1200_is_unipolar, }, {
.ai_scan_up = 0, /* duplicate entry, to support using alternate name */
.memory_mapped_io = 0, .name = "ni_labpc_cs",
}, .device_id = 0x103,
/* duplicate entry, to support using alternate name */ .ai_speed = 10000,
{ .bustype = pcmcia_bustype,
.name = "ni_labpc_cs", .register_layout = labpc_1200_layout,
.device_id = 0x103, .has_ao = 1,
.ai_speed = 10000, .ai_range_table = &range_labpc_1200_ai,
.bustype = pcmcia_bustype, .ai_range_code = labpc_1200_ai_gain_bits,
.register_layout = labpc_1200_layout, .ai_range_is_unipolar = labpc_1200_is_unipolar,
.has_ao = 1, },
.ai_range_table = &range_labpc_1200_ai,
.ai_range_code = labpc_1200_ai_gain_bits,
.ai_range_is_unipolar = labpc_1200_is_unipolar,
.ai_scan_up = 0,
.memory_mapped_io = 0,
},
}; };
static int labpc_attach(struct comedi_device *dev, struct comedi_devconfig *it) static int labpc_attach(struct comedi_device *dev, struct comedi_devconfig *it)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment