Commit 2fc783e0 authored by Federico Vaga's avatar Federico Vaga

sw:drv:spi: remove debug prints

Signed-off-by: Federico Vaga's avatarFederico Vaga <federico.vaga@cern.ch>
parent 41f8a071
...@@ -161,8 +161,6 @@ static void spi_ocores_tx_set(struct spi_ocores *sp, ...@@ -161,8 +161,6 @@ static void spi_ocores_tx_set(struct spi_ocores *sp,
return; return;
sp->write(sp, val, SPI_OCORES_TX(idx)); sp->write(sp, val, SPI_OCORES_TX(idx));
dev_dbg(&sp->master->dev, "%s {index: %d data: 0x%x}\n",
__func__, idx, val);
} }
/** /**
...@@ -177,8 +175,6 @@ static uint32_t spi_ocores_rx_get(struct spi_ocores *sp, unsigned int idx) ...@@ -177,8 +175,6 @@ static uint32_t spi_ocores_rx_get(struct spi_ocores *sp, unsigned int idx)
return 0; return 0;
val = sp->read(sp, SPI_OCORES_RX(idx)); val = sp->read(sp, SPI_OCORES_RX(idx));
dev_dbg(&sp->master->dev, "%s {index: %d data: 0x%x}\n",
__func__, idx, val);
return val; return val;
} }
......
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