drivers: spi: Fix twister build issue

Update spi_bitbang_transceive_async function parameter to it match
with correct one that declared in struct

Signed-off-by: Sadik Ozer <sadik.ozer@analog.com>
This commit is contained in:
Sadik Ozer 2024-08-06 16:36:19 +03:00 committed by Anas Nashif
parent ff311dcb41
commit d42301bc8c

View file

@ -231,7 +231,8 @@ static int spi_bitbang_transceive_async(const struct device *dev,
const struct spi_config *spi_cfg,
const struct spi_buf_set *tx_bufs,
const struct spi_buf_set *rx_bufs,
struct k_poll_signal *async)
spi_callback_t cb,
void *userdata)
{
return -ENOTSUP;
}