Skip to content

Commit

Permalink
pcie-brcmstb-bounce64.c: dev_err() -> dev_info() for info messages
Browse files Browse the repository at this point in the history
"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
  • Loading branch information
maxnet authored and popcornmix committed Jun 3, 2020
1 parent 6070dde commit 3733a9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/pci/controller/pcie-brcmstb-bounce64.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 3733a9b

Please sign in to comment.