arch/nrf{52|53|91}: fix typo

fix typo sndlock -> sndblock
This commit is contained in:
raiden00pl 2024-03-08 16:23:28 +01:00 committed by Xiang Xiao
parent b7db53b6e1
commit d33846046e
3 changed files with 3 additions and 3 deletions

View File

@ -235,7 +235,7 @@ static const struct spi_ops_s g_spi1ops =
# ifdef CONFIG_SPI_EXCHANGE
.exchange = nrf52_spi_exchange,
# else
.sndlock = nrf52_spi_sndblock,
.sndblock = nrf52_spi_sndblock,
.recvblock = nrf52_spi_recvblock,
# endif
#ifdef CONFIG_SPI_TRIGGER

View File

@ -210,7 +210,7 @@ static const struct spi_ops_s g_spi1ops =
# ifdef CONFIG_SPI_EXCHANGE
.exchange = nrf53_spi_exchange,
# else
.sndlock = nrf53_spi_sndblock,
.sndblock = nrf53_spi_sndblock,
.recvblock = nrf53_spi_recvblock,
# endif
#ifdef CONFIG_SPI_TRIGGER

View File

@ -210,7 +210,7 @@ static const struct spi_ops_s g_spi1ops =
# ifdef CONFIG_SPI_EXCHANGE
.exchange = nrf91_spi_exchange,
# else
.sndlock = nrf91_spi_sndblock,
.sndblock = nrf91_spi_sndblock,
.recvblock = nrf91_spi_recvblock,
# endif
#ifdef CONFIG_SPI_TRIGGER