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: H Hartley Sweeten <hsweeten@visionengravers.com> Cc: Ian Abbott <abbotti@mev.co.uk> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
0953ee4acc
commit
ce1d67ac3f
1 changed files with 6 additions and 6 deletions
|
@ -1327,13 +1327,13 @@ static int usbdux_pwm_period(struct comedi_device *dev,
|
||||||
struct usbdux_private *devpriv = dev->private;
|
struct usbdux_private *devpriv = dev->private;
|
||||||
int fx2delay = 255;
|
int fx2delay = 255;
|
||||||
|
|
||||||
if (period < MIN_PWM_PERIOD) {
|
if (period < MIN_PWM_PERIOD)
|
||||||
return -EAGAIN;
|
return -EAGAIN;
|
||||||
} else {
|
|
||||||
fx2delay = (period / (6 * 512 * 1000 / 33)) - 6;
|
fx2delay = (period / (6 * 512 * 1000 / 33)) - 6;
|
||||||
if (fx2delay > 255)
|
if (fx2delay > 255)
|
||||||
return -EAGAIN;
|
return -EAGAIN;
|
||||||
}
|
|
||||||
devpriv->pwm_delay = fx2delay;
|
devpriv->pwm_delay = fx2delay;
|
||||||
devpriv->pwm_period = period;
|
devpriv->pwm_period = period;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue