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

Commit c71f20ee authored by Phil Turnbull's avatar Phil Turnbull Committed by Greg Kroah-Hartman
Browse files

staging: comedi: adv_pci1760: Do not return EINVAL for CMDF_ROUND_DOWN.



The CMDF_ROUND_DOWN case falls through and so always returns -EINVAL.

Fixes: 14b93bb6 ("staging: comedi: adv_pci_dio: separate out PCI-1760 support")
Signed-off-by: default avatarPhil Turnbull <phil.turnbull@oracle.com>
Reviewed-by: default avatarIan Abbott <abbotti@mev.co.uk>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 5ca05345
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -196,6 +196,7 @@ static int pci1760_pwm_ns_to_div(unsigned int flags, unsigned int ns)
		break;
	case CMDF_ROUND_DOWN:
		divisor = ns / PCI1760_PWM_TIMEBASE;
		break;
	default:
		return -EINVAL;
	}