When the cmd->stop_src == TRIG_COUNT, the 'stopcount' is the cmd->stop_arg. When
the stop_src == TRIG_NONE the 'stopcount' is 0, which is also the cmd->stop_arg.
Simplify the 'stopcount' initialization.
Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com>
Reviewed-by: Ian Abbott <abbotti@mev.co.uk>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
        int event = 0;
 
        spin_lock_irqsave(&subpriv->spinlock, flags);
-       subpriv->active = true;
 
-       /* Set up end of acquisition. */
-       if (cmd->stop_src == TRIG_COUNT)
-               subpriv->stopcount = cmd->stop_arg;
-       else    /* TRIG_NONE */
-               subpriv->stopcount = 0;
+       subpriv->active = true;
+       subpriv->stopcount = cmd->stop_arg;
 
        if (cmd->start_src == TRIG_INT)
                s->async->inttrig = dio200_inttrig_start_intr;