Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 71b7b12e authored by H Hartley Sweeten's avatar H Hartley Sweeten Committed by Greg Kroah-Hartman
Browse files

staging: comedi: pcl816: remove 'rangelist_ao' from boardinfo



The 'rangelist_ao' is the same for all board types. Remove this data
from the boardinfo.

Signed-off-by: default avatarH Hartley Sweeten <hsweeten@visionengravers.com>
Reviewed-by: default avatarIan Abbott <abbotti@mev.co.uk>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent b157f34f
Loading
Loading
Loading
Loading
+1 −4
Original line number Diff line number Diff line
@@ -99,7 +99,6 @@ struct pcl816_board {
	int n_dichan;
	int n_dochan;
	const struct comedi_lrange *ai_range_type;
	const struct comedi_lrange *ao_range_type;
	unsigned int IRQbits;
	unsigned int DMAbits;
	int ai_maxdata;
@@ -118,7 +117,6 @@ static const struct pcl816_board boardtypes[] = {
		.n_dichan	= 16,
		.n_dochan	= 16,
		.ai_range_type	= &range_pcl816,
		.ao_range_type	= &range_pcl816,
		.IRQbits	= 0x00fc,
		.DMAbits	= 0x0a,
		.ai_maxdata	= 0xffff,
@@ -134,7 +132,6 @@ static const struct pcl816_board boardtypes[] = {
		.n_dichan	= 16,
		.n_dochan	= 16,
		.ai_range_type	= &range_pcl816,
		.ao_range_type	= &range_pcl816,
		.IRQbits	= 0x00fc,
		.DMAbits	= 0x0a,
		.ai_maxdata	= 0x3fff,
@@ -989,7 +986,7 @@ case COMEDI_SUBD_AO:
	s->n_chan = board->n_aochan;
	s->maxdata = board->ao_maxdata;
	s->len_chanlist = board->ao_chanlist;
	s->range_table = board->ao_range_type;
	s->range_table = &range_pcl816;
	break;

case COMEDI_SUBD_DI: