Home
last modified time | relevance | path

Searched refs:spi_dev_ctx (Results 1 – 1 of 1) sorted by relevance

/nrf_wifi-latest/bus_if/bus/spi/src/
Dspi.c37 struct nrf_wifi_bus_spi_dev_ctx *spi_dev_ctx = NULL; in nrf_wifi_bus_spi_dev_add() local
42 spi_dev_ctx = nrf_wifi_osal_mem_zalloc(sizeof(*spi_dev_ctx)); in nrf_wifi_bus_spi_dev_add()
44 if (!spi_dev_ctx) { in nrf_wifi_bus_spi_dev_add()
49 spi_dev_ctx->spi_priv = spi_priv; in nrf_wifi_bus_spi_dev_add()
50 spi_dev_ctx->bal_dev_ctx = bal_dev_ctx; in nrf_wifi_bus_spi_dev_add()
52 spi_dev_ctx->os_spi_dev_ctx = nrf_wifi_osal_bus_spi_dev_add(spi_priv->os_spi_priv, in nrf_wifi_bus_spi_dev_add()
53 spi_dev_ctx); in nrf_wifi_bus_spi_dev_add()
55 if (!spi_dev_ctx->os_spi_dev_ctx) { in nrf_wifi_bus_spi_dev_add()
58 nrf_wifi_osal_mem_free(spi_dev_ctx); in nrf_wifi_bus_spi_dev_add()
60 spi_dev_ctx = NULL; in nrf_wifi_bus_spi_dev_add()
[all …]