From: H Hartley Sweeten Date: Mon, 17 Feb 2014 21:26:39 +0000 (-0700) Subject: staging: comedi: pcl818: remove 0/NULL initialzation in boardinfo X-Git-Tag: v3.15-rc1~139^2~999 X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=04f788694201a1062bb05d7a99937eef68c8c095;p=~emulex%2Finfiniband.git staging: comedi: pcl818: remove 0/NULL initialzation in boardinfo The unlisted members in the boardinfo declaration will default to 0/NULL. Signed-off-by: H Hartley Sweeten Reviewed-by: Ian Abbott Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/comedi/drivers/pcl818.c b/drivers/staging/comedi/drivers/pcl818.c index dcbee0a2382..3dd9d98157d 100644 --- a/drivers/staging/comedi/drivers/pcl818.c +++ b/drivers/staging/comedi/drivers/pcl818.c @@ -298,7 +298,6 @@ static const struct pcl818_board boardtypes[] = { .DMAbits = 0x0a, .ai_maxdata = 0xfff, .ao_maxdata = 0xfff, - .fifo = 0, .is_818 = 1, }, { .name = "pcl818h", @@ -316,7 +315,6 @@ static const struct pcl818_board boardtypes[] = { .DMAbits = 0x0a, .ai_maxdata = 0xfff, .ao_maxdata = 0xfff, - .fifo = 0, .is_818 = 1, }, { .name = "pcl818hd", @@ -370,7 +368,6 @@ static const struct pcl818_board boardtypes[] = { .DMAbits = 0x0a, .ai_maxdata = 0xfff, .ao_maxdata = 0xfff, - .fifo = 0, .is_818 = 1, }, { .name = "pcl718", @@ -388,15 +385,12 @@ static const struct pcl818_board boardtypes[] = { .DMAbits = 0x0a, .ai_maxdata = 0xfff, .ao_maxdata = 0xfff, - .fifo = 0, - .is_818 = 0, }, { .name = "pcm3718", .n_ranges = 9, .n_aichan_se = 16, .n_aichan_diff = 8, .ns_min = 10000, - .n_aochan = 0, .n_dichan = 16, .n_dochan = 16, .ai_range_type = &range_pcl818h_ai, @@ -406,7 +400,6 @@ static const struct pcl818_board boardtypes[] = { .DMAbits = 0x0a, .ai_maxdata = 0xfff, .ao_maxdata = 0xfff, - .fifo = 0, .is_818 = 1, }, };