Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

drivers: flash: Fix regression on nrf52840 anomaly 122 workaround #43895

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 2 additions & 1 deletion drivers/flash/nrf_qspi_nor.c
Expand Up @@ -389,12 +389,13 @@ static void anomaly_122_uninit(const struct device *dev)
}
}

nrfx_qspi_uninit();

#ifndef CONFIG_PINCTRL
nrf_gpio_cfg_output(QSPI_PROP_AT(csn_pins, 0));
nrf_gpio_pin_set(QSPI_PROP_AT(csn_pins, 0));
#endif

nrfx_qspi_uninit();
qspi_initialized = false;
}

Expand Down