From: Bartosz Golaszewski Date: Thu, 25 May 2017 08:33:40 +0000 (+0200) Subject: gpio: mockup: be quiet unless something goes wrong X-Git-Tag: v4.13-rc1~116^2~37 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=01a3f23c166dc30f002e17c1ba9412a0390048d3;p=karo-tx-linux.git gpio: mockup: be quiet unless something goes wrong When inserting and removing the module repeatedly (e.g. when running the libgpiod test-suite) the kernel log gets clobbered with messages reporting successful creation of dummy gpiochips. Remove this message and only emit logs when something bad happens. Signed-off-by: Bartosz Golaszewski Signed-off-by: Linus Walleij --- diff --git a/drivers/gpio/gpio-mockup.c b/drivers/gpio/gpio-mockup.c index b1ee45cd4302..c17578e3bd6f 100644 --- a/drivers/gpio/gpio-mockup.c +++ b/drivers/gpio/gpio-mockup.c @@ -364,9 +364,6 @@ static int gpio_mockup_probe(struct platform_device *pdev) return ret; } - - dev_info(dev, "gpio<%d..%d> add successful!", - base, base + ngpio); } return 0;