Commit f8b03e5c authored by Sean Young's avatar Sean Young Committed by Uwe Kleine-König
Browse files

bus: ts-nbus: Use pwm_apply_might_sleep()



pwm_apply_state() is deprecated since commit c748a6d7 ("pwm: Rename
pwm_apply_state() to pwm_apply_might_sleep()").

Signed-off-by: default avatarSean Young <sean@mess.org>
Acked-by: default avatarUwe Kleine-König <u.kleine-koenig@baylibre.com>
Link: https://lore.kernel.org/r/20240614090829.560605-1-sean@mess.org


Signed-off-by: default avatarUwe Kleine-König <ukleinek@kernel.org>
parent a96d3659
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -294,7 +294,7 @@ static int ts_nbus_probe(struct platform_device *pdev)
	state.duty_cycle = state.period;
	state.enabled = true;

	ret = pwm_apply_state(pwm, &state);
	ret = pwm_apply_might_sleep(pwm, &state);
	if (ret < 0)
		return dev_err_probe(dev, ret, "failed to configure PWM\n");