pm: use enum for device PM states

Move all PM_DEVICE_STATE_* definitions to an enum. The
PM_DEVICE_STATE_SET and PM_DEVICE_STATE_GET definitions have been kept
out of the enum since they do not represent any state. However, their
name has not been changed since they will be removed soon.

All drivers and tests have been adjusted accordingly.

Signed-off-by: Gerard Marull-Paretas <gerard.marull@nordicsemi.no>
This commit is contained in:
Gerard Marull-Paretas 2021-06-03 19:06:53 +02:00 committed by Anas Nashif
commit cc2f0e9c08
53 changed files with 214 additions and 231 deletions

View file

@ -57,7 +57,7 @@ struct bme280_data {
uint8_t chip_id;
#ifdef CONFIG_PM_DEVICE
uint32_t pm_state; /* Current power state */
enum pm_device_state pm_state; /* Current power state */
#endif
};
@ -391,7 +391,7 @@ static int bme280_chip_init(const struct device *dev)
#ifdef CONFIG_PM_DEVICE
int bme280_pm_ctrl(const struct device *dev, uint32_t ctrl_command,
uint32_t *state, pm_device_cb cb, void *arg)
enum pm_device_state *state, pm_device_cb cb, void *arg)
{
struct bme280_data *data = to_data(dev);
@ -399,9 +399,7 @@ int bme280_pm_ctrl(const struct device *dev, uint32_t ctrl_command,
/* Set power state */
if (ctrl_command == PM_DEVICE_STATE_SET) {
uint32_t new_pm_state = *state;
if (new_pm_state != data->pm_state) {
if (*state != data->pm_state) {
/* Switching from OFF to any */
if (data->pm_state == PM_DEVICE_STATE_OFF) {