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

staging: comedi: amplc_dio200: remove 'mainsize' from ISA boardinfo

All the ISA DIO200 boards have an i/o region size of 0x20 (DIO200_IO_SIZE).
Remove the boardinfo and open code the size in the comedi_request_region()
call.
Signed-off-by: default avatarH Hartley Sweeten <hsweeten@visionengravers.com>
Reviewed-by: default avatarIan Abbott <abbotti@mev.co.uk>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 7560e527
......@@ -203,7 +203,6 @@
static const struct dio200_board dio200_isa_boards[] = {
{
.name = "pc212e",
.mainsize = DIO200_IO_SIZE,
.layout = {
.n_subdevs = 6,
.sdtype = {sd_8255, sd_8254, sd_8254, sd_8254, sd_8254,
......@@ -215,7 +214,6 @@ static const struct dio200_board dio200_isa_boards[] = {
},
{
.name = "pc214e",
.mainsize = DIO200_IO_SIZE,
.layout = {
.n_subdevs = 4,
.sdtype = {sd_8255, sd_8255, sd_8254, sd_intr},
......@@ -224,7 +222,6 @@ static const struct dio200_board dio200_isa_boards[] = {
},
{
.name = "pc215e",
.mainsize = DIO200_IO_SIZE,
.layout = {
.n_subdevs = 5,
.sdtype = {sd_8255, sd_8255, sd_8254, sd_8254, sd_intr},
......@@ -235,7 +232,6 @@ static const struct dio200_board dio200_isa_boards[] = {
},
{
.name = "pc218e",
.mainsize = DIO200_IO_SIZE,
.layout = {
.n_subdevs = 7,
.sdtype = {sd_8254, sd_8254, sd_8255, sd_8254, sd_8254,
......@@ -247,7 +243,6 @@ static const struct dio200_board dio200_isa_boards[] = {
},
{
.name = "pc272e",
.mainsize = DIO200_IO_SIZE,
.layout = {
.n_subdevs = 4,
.sdtype = {sd_8255, sd_8255, sd_8255, sd_intr},
......@@ -259,13 +254,12 @@ static const struct dio200_board dio200_isa_boards[] = {
static int dio200_attach(struct comedi_device *dev, struct comedi_devconfig *it)
{
const struct dio200_board *thisboard = comedi_board(dev);
unsigned int irq;
int ret;
irq = it->options[1];
ret = comedi_request_region(dev, it->options[0], thisboard->mainsize);
ret = comedi_request_region(dev, it->options[0], 0x20);
if (ret)
return ret;
......
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