Re: [PATCH v7 1/4] pwm: Rename pwm_apply_state() to pwm_apply_might_sleep()

2023-12-11 Thread Uwe Kleine-König
On Mon, Dec 11, 2023 at 08:24:52AM +, Sean Young wrote: > In order to introduce a pwm api which can be used from atomic context, > we will need two functions for applying pwm changes: > > int pwm_apply_might_sleep(struct pwm *, struct pwm_state *); > int pwm_apply_atomic(struct

[PATCH v7 1/4] pwm: Rename pwm_apply_state() to pwm_apply_might_sleep()

2023-12-11 Thread Sean Young
In order to introduce a pwm api which can be used from atomic context, we will need two functions for applying pwm changes: int pwm_apply_might_sleep(struct pwm *, struct pwm_state *); int pwm_apply_atomic(struct pwm *, struct pwm_state *); This commit just deals with renaming