From 0d4dd7d61bc1c06151ad79e246a91c158784a2c2 Mon Sep 17 00:00:00 2001 From: H Hartley Sweeten Date: Mon, 10 Jun 2013 10:15:08 -0700 Subject: [PATCH] staging: comedi: pcl724: remove all '= 0' boardinfo All uninitialized data will default to 0. Signed-off-by: H Hartley Sweeten Reviewed-by: Ian Abbott Signed-off-by: Greg Kroah-Hartman --- drivers/staging/comedi/drivers/pcl724.c | 9 --------- 1 file changed, 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, }, }; -- 2.11.0