drivers: serial: nrfx_uart: fix pin disconnect in suspend when !PINCTRL

Fix pin disconnection when COFNIG_PINCTRL=n, so that less power is used
in suspended state. This seems to be a copy-paste kind of bug, since
when both resuming and suspending the same configuration was applied.

Fixes: 5567d7ae07 ("drivers: serial: nrfx_uart: add support for
  pinctrl")

Signed-off-by: Marcin Niestroj <m.niestroj@grinn-global.com>
This commit is contained in:
Marcin Niestroj 2021-12-21 14:41:51 +01:00 committed by Carles Cufí
parent 6b03df6931
commit 2f4fbc7621

View file

@ -1184,7 +1184,7 @@ static int uart_nrfx_pm_action(const struct device *dev,
return ret;
}
#else
uart_nrfx_pins_configure(dev, false);
uart_nrfx_pins_configure(dev, true);
#endif /* CONFIG_PINCTRL */
}
break;