]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
iio: pressure: bmp280: Remove noisy dev_info()
authorSalah Triki <salah.triki@gmail.com>
Mon, 18 Aug 2025 09:27:31 +0000 (10:27 +0100)
committerJonathan Cameron <Jonathan.Cameron@huawei.com>
Sat, 13 Sep 2025 14:22:17 +0000 (15:22 +0100)
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>
Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
drivers/iio/pressure/bmp280-core.c

index 48e76d907180593fe947d38e82647a5876856be7..cf3f34f7bd7e7b7c5098d9ab2b4db041d5651ae7 100644 (file)
@@ -3212,7 +3212,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;