From: H Hartley Sweeten Date: Mon, 10 Jun 2013 17:15:08 +0000 (-0700) Subject: staging: comedi: pcl724: remove all '= 0' boardinfo X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=0d4dd7d61bc1c06151ad79e246a91c158784a2c2;p=deliverable%2Flinux.git 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 --- 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, }, };