eab3fd3cae9b6081c8ce6377d793842171b8c5b3
[openwrt/openwrt.git] / target / linux / bcm53xx / patches-5.10 / 033-v5.16-0014-ARM-dts-NSP-Fix-mpcore-mmc-node-names.patch
1 From 15a563d008ef9d04df525f0c476cd7d7127bb883 Mon Sep 17 00:00:00 2001
2 From: Matthew Hagan <mnhagan88@gmail.com>
3 Date: Sun, 29 Aug 2021 22:37:48 +0000
4 Subject: [PATCH] ARM: dts: NSP: Fix mpcore, mmc node names
5
6 Running dtbs_check yielded the issues with bcm-nsp.dtsi.
7
8 Firstly this patch fixes the following message by appending "-bus" to
9 the mpcore node name:
10 mpcore@19000000: $nodename:0: 'mpcore@19000000' does not match '^([a-z][a-z0-9\\-]+-bus|bus|soc|axi|ahb|apb)(@[0-9a-f]+)?$'
11
12 Secondly mmc node name. The label name can remain as is.
13 sdhci@21000: $nodename:0: 'sdhci@21000' does not match '^mmc(@.*)?$'
14
15 Signed-off-by: Matthew Hagan <mnhagan88@gmail.com>
16 Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
17 ---
18 arch/arm/boot/dts/bcm-nsp.dtsi | 4 ++--
19 1 file changed, 2 insertions(+), 2 deletions(-)
20
21 --- a/arch/arm/boot/dts/bcm-nsp.dtsi
22 +++ b/arch/arm/boot/dts/bcm-nsp.dtsi
23 @@ -77,7 +77,7 @@
24 interrupt-affinity = <&cpu0>, <&cpu1>;
25 };
26
27 - mpcore@19000000 {
28 + mpcore-bus@19000000 {
29 compatible = "simple-bus";
30 ranges = <0x00000000 0x19000000 0x00023000>;
31 #address-cells = <1>;
32 @@ -219,7 +219,7 @@
33 status = "disabled";
34 };
35
36 - sdio: sdhci@21000 {
37 + sdio: mmc@21000 {
38 compatible = "brcm,sdhci-iproc-cygnus";
39 reg = <0x21000 0x100>;
40 interrupts = <GIC_SPI 145 IRQ_TYPE_LEVEL_HIGH>;