OSDN Git Service

staging: comedi: pcl818: remove 0/NULL initialzation in boardinfo
authorH Hartley Sweeten <hsweeten@visionengravers.com>
Mon, 17 Feb 2014 21:26:39 +0000 (14:26 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 18 Feb 2014 19:53:52 +0000 (11:53 -0800)
The unlisted members in the boardinfo declaration will default to 0/NULL.

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/pcl818.c

index dcbee0a..3dd9d98 100644 (file)
@@ -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,
        },
 };