Merge branch 'refactor/remove_useless_spi_dma_chan' into 'master'

refactor(spi): Remove useless dma channels

See merge request espressif/esp-idf!36600
This commit is contained in:
C.S.M
2025-01-24 16:55:06 +08:00

View File

@@ -55,10 +55,6 @@ typedef struct {
void* destroy_arg;
spi_bus_attr_t bus_attr;
spi_dma_ctx_t *dma_ctx;
#if SOC_GDMA_SUPPORTED
gdma_channel_handle_t tx_channel;
gdma_channel_handle_t rx_channel;
#endif
} spicommon_bus_context_t;
static spicommon_bus_context_t s_mainbus = SPI_MAIN_BUS_DEFAULT();