mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-20 22:23:27 +00:00
7d7aa2fd92
This change makes the names of Broadcom targets consistent by using the common notation based on SoC/CPU ID (which is used internally anyway), bcmXXXX instead of brcmXXXX. This is even used for target TITLE in make menuconfig already, only the short target name used brcm so far. Despite, since subtargets range from bcm2708 to bcm2711, it seems appropriate to use bcm27xx instead of bcm2708 (again, as already done for BOARDNAME). This also renames the packages brcm2708-userland and brcm2708-gpu-fw. Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de> Acked-by: Álvaro Fernández Rojas <noltari@gmail.com>
26 lines
889 B
Diff
26 lines
889 B
Diff
From 592f7ebf2755acc81cd794b73916f3b2bcccaa68 Mon Sep 17 00:00:00 2001
|
|
From: Floris Bos <bos@je-eigen-domein.nl>
|
|
Date: Fri, 4 Oct 2019 16:41:30 +0200
|
|
Subject: [PATCH] pcie-brcmstb-bounce64.c: dev_err() -> dev_info() for
|
|
info messages
|
|
|
|
"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 | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
--- a/drivers/pci/controller/pcie-brcmstb-bounce64.c
|
|
+++ b/drivers/pci/controller/pcie-brcmstb-bounce64.c
|
|
@@ -524,7 +524,7 @@ int brcm_pcie_bounce_init(struct device
|
|
|
|
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;
|