Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

spi: stm32-ospi: Remove exec_op() callback debug log

Since commit ad4488845193 ("spi: spi-mem: Introduce a default ->exec_op()
debug log") a common debug log is available in spi-mem, so remove the one
from spi-stm32-ospi driver.

Signed-off-by: Patrice Chotard <patrice.chotard@foss.st.com>
Link: https://patch.msgid.link/20260213-upstream_ospi_remove_exec_op_debug_log-v1-1-164f17515fd0@foss.st.com
Signed-off-by: Mark Brown <broonie@kernel.org>

authored by

Patrice Chotard and committed by
Mark Brown
52531750 837f6691

-5
-5
drivers/spi/spi-stm32-ospi.c
··· 469 469 int timeout, err = 0, err_poll_status = 0; 470 470 u8 cs = spi->chip_select[ffs(spi->cs_index_mask) - 1]; 471 471 472 - dev_dbg(ospi->dev, "cmd:%#x mode:%d.%d.%d.%d addr:%#llx len:%#x\n", 473 - op->cmd.opcode, op->cmd.buswidth, op->addr.buswidth, 474 - op->dummy.buswidth, op->data.buswidth, 475 - op->addr.val, op->data.nbytes); 476 - 477 472 cr = readl_relaxed(ospi->regs_base + OSPI_CR); 478 473 cr &= ~CR_CSSEL; 479 474 cr |= FIELD_PREP(CR_CSSEL, cs);