spi: Fix wrong target register for interrupt disable

This commit is contained in:
Gustavo Henrique Nihei 2021-05-21 14:13:48 -03:00
parent 863c3ae12f
commit c1b3d77dcf
2 changed files with 2 additions and 2 deletions

View File

@ -138,7 +138,7 @@ static inline void spi_ll_slave_init(spi_dev_t *hw)
hw->dma_conf.dma_seg_trans_en = 0;
//Disable unneeded ints
hw->slave.val &= ~SPI_LL_UNUSED_INT_MASK;
hw->dma_int_ena.val &= ~SPI_LL_UNUSED_INT_MASK;
}
/**

View File

@ -138,7 +138,7 @@ static inline void spi_ll_slave_init(spi_dev_t *hw)
hw->dma_conf.dma_seg_trans_en = 0;
//Disable unneeded ints
hw->slave.val &= ~SPI_LL_UNUSED_INT_MASK;
hw->dma_int_ena.val &= ~SPI_LL_UNUSED_INT_MASK;
}
/**