Skip to content

Commit

Permalink
staging: comedi: dt3000: remove empty 'else' code
Browse files Browse the repository at this point in the history
There are a number of:

	} else {
		/* not supported */
	}

cases in this driver. Remove them.

Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com>
Cc: Ian Abbott <abbotti@mev.co.uk>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
  • Loading branch information
H Hartley Sweeten authored and Greg Kroah-Hartman committed Oct 26, 2012
1 parent f26d8b7 commit d3bf217
Showing 1 changed file with 2 additions and 12 deletions.
14 changes: 2 additions & 12 deletions drivers/staging/comedi/drivers/dt3000.c
Original file line number Diff line number Diff line change
Expand Up @@ -488,9 +488,8 @@ static int dt3k_ai_cmdtest(struct comedi_device *dev,
cmd->scan_begin_arg = 100 * 16 * 65535;
err++;
}
} else {
/* not supported */
}

if (cmd->convert_src == TRIG_TIMER) {
if (cmd->convert_arg < this_board->ai_speed) {
cmd->convert_arg = this_board->ai_speed;
Expand All @@ -500,8 +499,6 @@ static int dt3k_ai_cmdtest(struct comedi_device *dev,
cmd->convert_arg = 50 * 16 * 65535;
err++;
}
} else {
/* not supported */
}

if (cmd->scan_end_arg != cmd->chanlist_len) {
Expand Down Expand Up @@ -532,9 +529,8 @@ static int dt3k_ai_cmdtest(struct comedi_device *dev,
cmd->flags & TRIG_ROUND_MASK);
if (tmp != cmd->scan_begin_arg)
err++;
} else {
/* not supported */
}

if (cmd->convert_src == TRIG_TIMER) {
tmp = cmd->convert_arg;
dt3k_ns_to_timer(50, &cmd->convert_arg,
Expand All @@ -548,8 +544,6 @@ static int dt3k_ai_cmdtest(struct comedi_device *dev,
cmd->convert_arg * cmd->scan_end_arg;
err++;
}
} else {
/* not supported */
}

if (err)
Expand Down Expand Up @@ -585,17 +579,13 @@ static int dt3k_ai_cmd(struct comedi_device *dev, struct comedi_subdevice *s)
cmd->flags & TRIG_ROUND_MASK);
writew((divider >> 16), devpriv->io_addr + DPR_Params(1));
writew((divider & 0xffff), devpriv->io_addr + DPR_Params(2));
} else {
/* not supported */
}

if (cmd->scan_begin_src == TRIG_TIMER) {
tscandiv = dt3k_ns_to_timer(100, &cmd->scan_begin_arg,
cmd->flags & TRIG_ROUND_MASK);
writew((tscandiv >> 16), devpriv->io_addr + DPR_Params(3));
writew((tscandiv & 0xffff), devpriv->io_addr + DPR_Params(4));
} else {
/* not supported */
}

mode = DT3000_AD_RETRIG_INTERNAL | 0 | 0;
Expand Down

0 comments on commit d3bf217

Please sign in to comment.