pm: fix incorrect usages of PM_DEVICE_STATE_OFF
According to the documentation the OFF state has to be used when the devices is fully turned off, ie, power removed. Most drivers were using a sort of fall-through for all non-active states, leading to behaviors not following the specifications. Signed-off-by: Gerard Marull-Paretas <gerard.marull@nordicsemi.no>
This commit is contained in:
parent
495672ab62
commit
6d273f49bd
10 changed files with 3 additions and 19 deletions
|
@ -301,8 +301,6 @@ static int pwm_nrfx_pm_control(const struct device *dev,
|
|||
err = pwm_nrfx_init(dev);
|
||||
break;
|
||||
case PM_DEVICE_STATE_SUSPENDED:
|
||||
__fallthrough;
|
||||
case PM_DEVICE_STATE_OFF:
|
||||
pwm_nrfx_uninit(dev);
|
||||
break;
|
||||
default:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue