From: Patrice Chotard Date: Fri, 13 Feb 2026 08:19:11 +0000 (+0100) Subject: spi: stm32-ospi: Remove exec_op() callback debug log X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=52531750d39b94803e089dda95e43925730c03bd;p=thirdparty%2Flinux.git 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 Link: https://patch.msgid.link/20260213-upstream_ospi_remove_exec_op_debug_log-v1-1-164f17515fd0@foss.st.com Signed-off-by: Mark Brown --- diff --git a/drivers/spi/spi-stm32-ospi.c b/drivers/spi/spi-stm32-ospi.c index c98afe02a1b6b..acf2d182e8b1c 100644 --- a/drivers/spi/spi-stm32-ospi.c +++ b/drivers/spi/spi-stm32-ospi.c @@ -469,11 +469,6 @@ static int stm32_ospi_send(struct spi_device *spi, const struct spi_mem_op *op) int timeout, err = 0, err_poll_status = 0; u8 cs = spi->chip_select[ffs(spi->cs_index_mask) - 1]; - dev_dbg(ospi->dev, "cmd:%#x mode:%d.%d.%d.%d addr:%#llx len:%#x\n", - op->cmd.opcode, op->cmd.buswidth, op->addr.buswidth, - op->dummy.buswidth, op->data.buswidth, - op->addr.val, op->data.nbytes); - cr = readl_relaxed(ospi->regs_base + OSPI_CR); cr &= ~CR_CSSEL; cr |= FIELD_PREP(CR_CSSEL, cs);