From: Miquel Raynal Date: Tue, 21 Sep 2021 11:53:55 +0000 (+0200) Subject: iio: adc: max1027: Drop useless debug messages X-Git-Tag: v6.6.17~8913^2~23^2~75 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6f1bc6d8fb569eff3c4a5a54a31fc501adab4234;p=platform%2Fkernel%2Flinux-rpi.git iio: adc: max1027: Drop useless debug messages These two debug messages bring absolutely no value, let's drop them. Signed-off-by: Miquel Raynal Link: https://lore.kernel.org/r/20210921115408.66711-4-miquel.raynal@bootlin.com Signed-off-by: Jonathan Cameron --- diff --git a/drivers/iio/adc/max1027.c b/drivers/iio/adc/max1027.c index 9eaeb17..63652a6 100644 --- a/drivers/iio/adc/max1027.c +++ b/drivers/iio/adc/max1027.c @@ -393,8 +393,6 @@ static irqreturn_t max1027_trigger_handler(int irq, void *private) struct iio_dev *indio_dev = pf->indio_dev; struct max1027_state *st = iio_priv(indio_dev); - pr_debug("%s(irq=%d, private=0x%p)\n", __func__, irq, private); - /* fill buffer with all channel */ spi_read(st->spi, st->buffer, indio_dev->masklength * 2); @@ -422,8 +420,6 @@ static int max1027_probe(struct spi_device *spi) struct iio_dev *indio_dev; struct max1027_state *st; - pr_debug("%s: probe(spi = 0x%p)\n", __func__, spi); - indio_dev = devm_iio_device_alloc(&spi->dev, sizeof(*st)); if (!indio_dev) { pr_err("Can't allocate iio device\n");