pcie-brcmstb-bounce64.c: dev_err() -> dev_info() for info messages
authorFloris Bos <bos@je-eigen-domein.nl>
Fri, 4 Oct 2019 14:41:30 +0000 (16:41 +0200)
committerpopcornmix <popcornmix@gmail.com>
Wed, 1 Jul 2020 15:33:07 +0000 (16:33 +0100)
"dmabounce: initialised" is not an error, so do not log it as such.
Prevents screen polution on OS with "quiet" as kernel parameter.

Closes #3266

drivers/pci/controller/pcie-brcmstb-bounce64.c

index 6a87297..ac8dde3 100644 (file)
@@ -517,7 +517,7 @@ int brcm_pcie_bounce_init(struct device *dev,
 
        g_dmabounce_device_info = device_info;
 
-       dev_err(dev, "dmabounce: initialised - %ld kB, threshold %pad\n",
+       dev_info(dev, "dmabounce: initialised - %ld kB, threshold %pad\n",
                 buffer_size / 1024, &threshold);
 
        return 0;