Revert "Input: ads7846 - ratelimit the spi_sync error message"

This reverts commit 1d76f9917e.
This commit is contained in:
Ksawlii 2024-11-24 00:23:35 +01:00
parent 322e1c22c6
commit 457e8e4a8e

View file

@ -819,7 +819,7 @@ static void ads7846_read_state(struct ads7846 *ts)
m = &ts->msg[msg_idx];
error = spi_sync(ts->spi, m);
if (error) {
dev_err_ratelimited(&ts->spi->dev, "spi_sync --> %d\n", error);
dev_err(&ts->spi->dev, "spi_sync --> %d\n", error);
packet->ignore = true;
return;
}