Skip to content

Commit 5c08f18

Browse files
ananglcfriedt
authored andcommitted
drivers: spi_context: Correct alignment of LOG_DBG() parameters
so that the call looks nicer. Signed-off-by: Andrzej Głąbek <[email protected]>
1 parent a74b652 commit 5c08f18

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

drivers/spi/spi_context.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -294,10 +294,10 @@ void spi_context_buffers_setup(struct spi_context *ctx,
294294
#endif /* CONFIG_SPI_SLAVE */
295295

296296
LOG_DBG("current_tx %p (%zu), current_rx %p (%zu),"
297-
" tx buf/len %p/%zu, rx buf/len %p/%zu",
298-
ctx->current_tx, ctx->tx_count,
299-
ctx->current_rx, ctx->rx_count,
300-
ctx->tx_buf, ctx->tx_len, ctx->rx_buf, ctx->rx_len);
297+
" tx buf/len %p/%zu, rx buf/len %p/%zu",
298+
ctx->current_tx, ctx->tx_count,
299+
ctx->current_rx, ctx->rx_count,
300+
ctx->tx_buf, ctx->tx_len, ctx->rx_buf, ctx->rx_len);
301301
}
302302

303303
static ALWAYS_INLINE

0 commit comments

Comments
 (0)