esp32/machine_sdcard: Use deinit_p to deinit SD bus in SPI mode.

Fixes issue #7352.

Signed-off-by: Damien George <damien@micropython.org>
This commit is contained in:
Damien George 2021-06-18 00:14:21 +10:00
parent bc7822d8e9
commit 4eb13c50cd

View File

@ -256,7 +256,14 @@ STATIC mp_obj_t sd_deinit(mp_obj_t self_in) {
DEBUG_printf("De-init host\n");
if (self->flags & SDCARD_CARD_FLAGS_HOST_INIT_DONE) {
#if ESP_IDF_VERSION >= ESP_IDF_VERSION_VAL(4, 2, 0)
if (self->host.flags & SDMMC_HOST_FLAG_DEINIT_ARG) {
self->host.deinit_p(self->host.slot);
} else
#endif
{
self->host.deinit();
}
self->flags &= ~SDCARD_CARD_FLAGS_HOST_INIT_DONE;
}