diff options
| author | H Hartley Sweeten <hsweeten@visionengravers.com> | 2013-06-10 10:15:08 -0700 |
|---|---|---|
| committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-06-11 17:16:44 -0700 |
| commit | 0d4dd7d61bc1c06151ad79e246a91c158784a2c2 (patch) | |
| tree | 9c3f23f60f154c026b069d80c96417d188b0ceb5 | |
| parent | 0b69b44901bf8c730c3c09eba25377d1f45d8c49 (diff) | |
staging: comedi: pcl724: remove all '= 0' boardinfo
All uninitialized data will default to 0.
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>
| -rw-r--r-- | drivers/staging/comedi/drivers/pcl724.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/drivers/staging/comedi/drivers/pcl724.c b/drivers/staging/comedi/drivers/pcl724.c index 3a3b16b7e508..396fdbdf9f75 100644 --- a/drivers/staging/comedi/drivers/pcl724.c +++ b/drivers/staging/comedi/drivers/pcl724.c @@ -70,42 +70,33 @@ static const struct pcl724_board boardtypes[] = { .dio = 24, .numofports = 1, .io_range = PCL724_SIZE, - .can_have96 = 0, - .is_pet48 = 0, }, { .name = "pcl722", .dio = 144, .numofports = 6, .io_range = PCL722_SIZE, .can_have96 = 1, - .is_pet48 = 0, }, { .name = "pcl731", .dio = 48, .numofports = 2, .io_range = PCL731_SIZE, - .can_have96 = 0, - .is_pet48 = 0, }, { .name = "acl7122", .dio = 144, .numofports = 6, .io_range = PCL722_SIZE, .can_have96 = 1, - .is_pet48 = 0, }, { .name = "acl7124", .dio = 24, .numofports = 1, .io_range = PCL724_SIZE, - .can_have96 = 0, - .is_pet48 = 0, }, { .name = "pet48dio", .dio = 48, .numofports = 2, .io_range = PET48_SIZE, - .can_have96 = 0, .is_pet48 = 1, }, }; |
