[PATCH v4 2/3] iio: pressure: bmp280: Remove noisy dev_info()

Salah Triki posted 3 patches 1 month, 2 weeks ago
[PATCH v4 2/3] iio: pressure: bmp280: Remove noisy dev_info()
Posted by Salah Triki 1 month, 2 weeks ago
Remove `dev_info()` call as it was considered noisy and is not
necessary for normal driver operation.

Signed-off-by: Salah Triki <salah.triki@gmail.com>
Reviewed-by: David Lechner <dlechner@baylibre.com>
---
 drivers/iio/pressure/bmp280-core.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/drivers/iio/pressure/bmp280-core.c b/drivers/iio/pressure/bmp280-core.c
index 6cdc8ed53520..1f0852fc3414 100644
--- a/drivers/iio/pressure/bmp280-core.c
+++ b/drivers/iio/pressure/bmp280-core.c
@@ -3217,7 +3217,6 @@ int bmp280_common_probe(struct device *dev,
 		return dev_err_probe(dev, PTR_ERR(gpiod), "failed to get reset GPIO\n");
 
 	/* Deassert the signal */
-	dev_info(dev, "release reset\n");
 	gpiod_set_value(gpiod, 0);
 
 	data->regmap = regmap;
-- 
2.43.0
Re: [PATCH v4 2/3] iio: pressure: bmp280: Remove noisy dev_info()
Posted by Andy Shevchenko 1 month, 2 weeks ago
On Mon, Aug 18, 2025 at 10:27:31AM +0100, Salah Triki wrote:
> Remove `dev_info()` call as it was considered noisy and is not
> necessary for normal driver operation.

I agree with this.
Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>

-- 
With Best Regards,
Andy Shevchenko
Re: [PATCH v4 2/3] iio: pressure: bmp280: Remove noisy dev_info()
Posted by Jonathan Cameron 2 weeks, 6 days ago
On Wed, 20 Aug 2025 17:49:43 +0300
Andy Shevchenko <andriy.shevchenko@linux.intel.com> wrote:

> On Mon, Aug 18, 2025 at 10:27:31AM +0100, Salah Triki wrote:
> > Remove `dev_info()` call as it was considered noisy and is not
> > necessary for normal driver operation.  
> 
> I agree with this.
> Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
> 

Applied. Thanks