staging: comedi: pcl724: remove 'dio' from boardinfo
authorH Hartley Sweeten <hsweeten@visionengravers.com>
Mon, 10 Jun 2013 17:16:32 +0000 (10:16 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 12 Jun 2013 00:16:47 +0000 (17:16 -0700)
This data in the boardinfo is not used by the driver. Remove it.

Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com>
Reviewed-by: Ian Abbott <abbotti@mev.co.uk>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/comedi/drivers/pcl724.c

index 329aa9a..a986a88 100644 (file)
@@ -53,7 +53,6 @@ struct pcl724_board {
        unsigned int io_range;
        unsigned int can_have96:1;
        unsigned int is_pet48:1;
-       int dio;
        int numofports;
 };
 
@@ -61,36 +60,30 @@ static const struct pcl724_board boardtypes[] = {
        {
                .name           = "pcl724",
                .io_range       = 0x04,
-               .dio            = 24,
-               .numofports     = 1,
+               .numofports     = 1,    /* 24 DIO channels */
        }, {
                .name           = "pcl722",
                .io_range       = 0x20,
                .can_have96     = 1,
-               .dio            = 144,
-               .numofports     = 6,
+               .numofports     = 6,    /* 144 (or 96) DIO channels */
        }, {
                .name           = "pcl731",
                .io_range       = 0x08,
-               .dio            = 48,
-               .numofports     = 2,
+               .numofports     = 2,    /* 48 DIO channels */
        }, {
                .name           = "acl7122",
                .io_range       = 0x20,
                .can_have96     = 1,
-               .dio            = 144,
-               .numofports     = 6,
+               .numofports     = 6,    /* 144 (or 96) DIO channels */
        }, {
                .name           = "acl7124",
                .io_range       = 0x04,
-               .dio            = 24,
-               .numofports     = 1,
+               .numofports     = 1,    /* 24 DIO channels */
        }, {
                .name           = "pet48dio",
                .io_range       = 0x02,
                .is_pet48       = 1,
-               .dio            = 48,
-               .numofports     = 2,
+               .numofports     = 2,    /* 48 DIO channels */
        },
 };