spi: Remove warning in spi_split_transfers_maxsize()
Don't warn about splitting transfers, the info is available in the statistics if needed. Signed-off-by: Noralf Trønnes <noralf@tronnes.org> Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
76d2f7ee68
commit
4d1841d645
|
@ -2788,11 +2788,6 @@ static int __spi_split_transfer_maxsize(struct spi_controller *ctlr,
|
||||||
size_t offset;
|
size_t offset;
|
||||||
size_t count, i;
|
size_t count, i;
|
||||||
|
|
||||||
/* warn once about this fact that we are splitting a transfer */
|
|
||||||
dev_warn_once(&msg->spi->dev,
|
|
||||||
"spi_transfer of length %i exceed max length of %zu - needed to split transfers\n",
|
|
||||||
xfer->len, maxsize);
|
|
||||||
|
|
||||||
/* calculate how many we have to replace */
|
/* calculate how many we have to replace */
|
||||||
count = DIV_ROUND_UP(xfer->len, maxsize);
|
count = DIV_ROUND_UP(xfer->len, maxsize);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue