Commit 5c08f183 authored by Andrzej Głąbek's avatar Andrzej Głąbek Committed by Christopher Friedt
Browse files

drivers: spi_context: Correct alignment of LOG_DBG() parameters


so that the call looks nicer.
Signed-off-by: default avatarAndrzej Głąbek <andrzej.glabek@nordicsemi.no>
parent a74b652d
No related merge requests found
Showing with 4 additions and 4 deletions
+4 -4
......@@ -294,10 +294,10 @@ void spi_context_buffers_setup(struct spi_context *ctx,
#endif /* CONFIG_SPI_SLAVE */
LOG_DBG("current_tx %p (%zu), current_rx %p (%zu),"
" tx buf/len %p/%zu, rx buf/len %p/%zu",
ctx->current_tx, ctx->tx_count,
ctx->current_rx, ctx->rx_count,
ctx->tx_buf, ctx->tx_len, ctx->rx_buf, ctx->rx_len);
" tx buf/len %p/%zu, rx buf/len %p/%zu",
ctx->current_tx, ctx->tx_count,
ctx->current_rx, ctx->rx_count,
ctx->tx_buf, ctx->tx_len, ctx->rx_buf, ctx->rx_len);
}
static ALWAYS_INLINE
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment