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

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

staging: comedi: usbdux: checkpatch.pl cleanup (else not useful)



Fix the checkpatch.pl warning:

WARNING: else is not generally useful after a break or return

Signed-off-by: default avatarH Hartley Sweeten <hsweeten@visionengravers.com>
Cc: Ian Abbott <abbotti@mev.co.uk>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 0953ee4a
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -1327,13 +1327,13 @@ static int usbdux_pwm_period(struct comedi_device *dev,
	struct usbdux_private *devpriv = dev->private;
	int fx2delay = 255;

	if (period < MIN_PWM_PERIOD) {
	if (period < MIN_PWM_PERIOD)
		return -EAGAIN;
	} else {

	fx2delay = (period / (6 * 512 * 1000 / 33)) - 6;
	if (fx2delay > 255)
		return -EAGAIN;
	}

	devpriv->pwm_delay = fx2delay;
	devpriv->pwm_period = period;