summaryrefslogtreecommitdiffstats
path: root/drivers/misc
diff options
context:
space:
mode:
authorAhmad Fatoum <a.fatoum@pengutronix.de>2021-10-30 19:54:43 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2021-11-01 11:28:41 +0100
commitde828cac88c592df04abad603eba63935d6703fb (patch)
treeeb90122a41ae5e4e23c4284c1dee3c7bb3b83e02 /drivers/misc
parent1ba220dcc3a8bd0369555e7c41ed246e889038fe (diff)
downloadbarebox-de828cac88c592df04abad603eba63935d6703fb.tar.gz
barebox-de828cac88c592df04abad603eba63935d6703fb.tar.xz
misc: acpi-test: bump down debug message on remove
The ACPI test driver is meant to serve as template for adding more useful drivers. Printing a message in remove isn't a pattern that should be copied, so bump the level down. Signed-off-by: Ahmad Fatoum <a.fatoum@pengutronix.de> Link: https://lore.barebox.org/20211030175446.2274194-1-a.fatoum@pengutronix.de Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'drivers/misc')
-rw-r--r--drivers/misc/acpi-test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/misc/acpi-test.c b/drivers/misc/acpi-test.c
index 1d6814ebcf..784c80cc5b 100644
--- a/drivers/misc/acpi-test.c
+++ b/drivers/misc/acpi-test.c
@@ -47,7 +47,7 @@ static int acpi_test_probe(struct device_d *dev)
static void acpi_test_remove(struct device_d *dev)
{
- dev_info(dev, "FADT driver removed\n");
+ dev_dbg(dev, "FADT driver removed\n");
}
static struct acpi_driver acpi_test_driver = {