From: H Hartley Sweeten Date: Mon, 17 Feb 2014 21:27:04 +0000 (-0700) Subject: staging: comedi: pcl816: remove 'ao_chanlist' from boardinfo X-Git-Tag: next-20140306~21^2~264 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=f5fafc976ffca0350bd7114c213c9f65ec23d6cd;p=karo-tx-linux.git staging: comedi: pcl816: remove 'ao_chanlist' from boardinfo This member in the boardinfo is the same for all board types. Remove it. The comedi core will initalize the subdevice len_chanlist to 1 if it is not set by the driver so remove the unnecessary initialization. Signed-off-by: H Hartley Sweeten Reviewed-by: Ian Abbott Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/comedi/drivers/pcl816.c b/drivers/staging/comedi/drivers/pcl816.c index b2d857d3acca..70f5c78495de 100644 --- a/drivers/staging/comedi/drivers/pcl816.c +++ b/drivers/staging/comedi/drivers/pcl816.c @@ -99,7 +99,6 @@ struct pcl816_board { int ai_maxdata; int ao_maxdata; int ai_chanlist; - int ao_chanlist; }; static const struct pcl816_board boardtypes[] = { @@ -112,7 +111,6 @@ static const struct pcl816_board boardtypes[] = { .ai_maxdata = 0xffff, .ao_maxdata = 0xffff, .ai_chanlist = 1024, - .ao_chanlist = 1, }, { .name = "pcl814b", .ai_ns_min = 10000, @@ -122,7 +120,6 @@ static const struct pcl816_board boardtypes[] = { .ai_maxdata = 0x3fff, .ao_maxdata = 0x3fff, .ai_chanlist = 1024, - .ao_chanlist = 1, }, }; @@ -942,7 +939,6 @@ static int pcl816_attach(struct comedi_device *dev, struct comedi_devconfig *it) s->subdev_flags = SDF_WRITABLE | SDF_GROUND; s->n_chan = board->n_aochan; s->maxdata = board->ao_maxdata; - s->len_chanlist = board->ao_chanlist; s->range_table = &range_pcl816; break;