Commit ed023d52 authored by H Hartley Sweeten's avatar H Hartley Sweeten Committed by Greg Kroah-Hartman

staging: comedi: amplc_dio200_common: remove unnecessary 'counter_number' checks

The 'counter_number' in these functions is the comedi channel number from the
chanspec. The comedi core validates the chanspec before calling the driver
functions. Remove the unnecessary checks.
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 fdb7c3ec
...@@ -577,8 +577,6 @@ static int dio200_subdev_8254_set_gate_src(struct comedi_device *dev, ...@@ -577,8 +577,6 @@ static int dio200_subdev_8254_set_gate_src(struct comedi_device *dev,
if (!board->has_clk_gat_sce) if (!board->has_clk_gat_sce)
return -1; return -1;
if (counter_number > 2)
return -1;
if (gate_src > (board->is_pcie ? 31 : 7)) if (gate_src > (board->is_pcie ? 31 : 7))
return -1; return -1;
...@@ -598,8 +596,6 @@ static int dio200_subdev_8254_get_gate_src(struct comedi_device *dev, ...@@ -598,8 +596,6 @@ static int dio200_subdev_8254_get_gate_src(struct comedi_device *dev,
if (!board->has_clk_gat_sce) if (!board->has_clk_gat_sce)
return -1; return -1;
if (counter_number > 2)
return -1;
return subpriv->gate_src[counter_number]; return subpriv->gate_src[counter_number];
} }
...@@ -615,8 +611,6 @@ static int dio200_subdev_8254_set_clock_src(struct comedi_device *dev, ...@@ -615,8 +611,6 @@ static int dio200_subdev_8254_set_clock_src(struct comedi_device *dev,
if (!board->has_clk_gat_sce) if (!board->has_clk_gat_sce)
return -1; return -1;
if (counter_number > 2)
return -1;
if (clock_src > (board->is_pcie ? 31 : 7)) if (clock_src > (board->is_pcie ? 31 : 7))
return -1; return -1;
...@@ -638,8 +632,6 @@ static int dio200_subdev_8254_get_clock_src(struct comedi_device *dev, ...@@ -638,8 +632,6 @@ static int dio200_subdev_8254_get_clock_src(struct comedi_device *dev,
if (!board->has_clk_gat_sce) if (!board->has_clk_gat_sce)
return -1; return -1;
if (counter_number > 2)
return -1;
clock_src = subpriv->clock_src[counter_number]; clock_src = subpriv->clock_src[counter_number];
*period_ns = clock_period[clock_src]; *period_ns = clock_period[clock_src];
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment