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

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

staging: comedi: pcl818: 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 71b7b12e
Loading
Loading
Loading
Loading
+1 −9
Original line number Diff line number Diff line
@@ -266,7 +266,6 @@ struct pcl818_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;
@@ -286,7 +285,6 @@ static const struct pcl818_board boardtypes[] = {
		.n_dichan	= 16,
		.n_dochan	= 16,
		.ai_range_type	= &range_pcl818l_l_ai,
		.ao_range_type	= &range_unipolar5,
		.IRQbits	= 0x00fc,
		.DMAbits	= 0x0a,
		.ai_maxdata	= 0xfff,
@@ -302,7 +300,6 @@ static const struct pcl818_board boardtypes[] = {
		.n_dichan	= 16,
		.n_dochan	= 16,
		.ai_range_type	= &range_pcl818h_ai,
		.ao_range_type	= &range_unipolar5,
		.IRQbits	= 0x00fc,
		.DMAbits	= 0x0a,
		.ai_maxdata	= 0xfff,
@@ -318,7 +315,6 @@ static const struct pcl818_board boardtypes[] = {
		.n_dichan	= 16,
		.n_dochan	= 16,
		.ai_range_type	= &range_pcl818h_ai,
		.ao_range_type	= &range_unipolar5,
		.IRQbits	= 0x00fc,
		.DMAbits	= 0x0a,
		.ai_maxdata	= 0xfff,
@@ -335,7 +331,6 @@ static const struct pcl818_board boardtypes[] = {
		.n_dichan	= 16,
		.n_dochan	= 16,
		.ai_range_type	= &range_pcl818hg_ai,
		.ao_range_type	= &range_unipolar5,
		.IRQbits	= 0x00fc,
		.DMAbits	= 0x0a,
		.ai_maxdata	= 0xfff,
@@ -352,7 +347,6 @@ static const struct pcl818_board boardtypes[] = {
		.n_dichan	= 16,
		.n_dochan	= 16,
		.ai_range_type	= &range_pcl818h_ai,
		.ao_range_type	= &range_unipolar5,
		.IRQbits	= 0x00fc,
		.DMAbits	= 0x0a,
		.ai_maxdata	= 0xfff,
@@ -368,7 +362,6 @@ static const struct pcl818_board boardtypes[] = {
		.n_dichan	= 16,
		.n_dochan	= 16,
		.ai_range_type	= &range_unipolar5,
		.ao_range_type	= &range_unipolar5,
		.IRQbits	= 0x00fc,
		.DMAbits	= 0x0a,
		.ai_maxdata	= 0xfff,
@@ -382,7 +375,6 @@ static const struct pcl818_board boardtypes[] = {
		.n_dichan	= 16,
		.n_dochan	= 16,
		.ai_range_type	= &range_pcl818h_ai,
		.ao_range_type	= &range_unipolar5,
		.IRQbits	= 0x00fc,
		.DMAbits	= 0x0a,
		.ai_maxdata	= 0xfff,
@@ -1466,7 +1458,7 @@ static int pcl818_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->range_table = board->ao_range_type;
		s->range_table = &range_unipolar5;
		s->insn_read = pcl818_ao_insn_read;
		s->insn_write = pcl818_ao_insn_write;
		if (board->is_818) {