summaryrefslogtreecommitdiffstats
path: root/arch
diff options
context:
space:
mode:
authorIan Abbott <abbotti@mev.co.uk>2021-11-18 13:09:27 +0000
committerSascha Hauer <s.hauer@pengutronix.de>2021-11-22 10:11:15 +0100
commitfdf8416a2b9fad1188106e0490975eff11f6b13a (patch)
tree694853e8d962020b6417c25d74044f6278def843 /arch
parentc0b08089caa334838af4b22c9a59eb34badd3fbb (diff)
downloadbarebox-fdf8416a2b9fad1188106e0490975eff11f6b13a.tar.gz
barebox-fdf8416a2b9fad1188106e0490975eff11f6b13a.tar.xz
ARM: socfpga: Set reset-names property for &mmc
The device tree node for SoCFPGA's MMC device has the `resets =` property, but is missing the `reset-names = "reset";` property. This causes the "dw_mmc" driver to output a warning: WARNING: dw_mmc ff704000.dwmmc0@ff704000.of: error claiming reset: Invalid argument Add the missing `reset-names` property to the `&mmc` node in "arch/arm/dts/socfpga.dtsi". It probably needs fixing in the upstream Linux device tree sources too! Cc: Ahmad Fatoum <a.fatoum@pengutronix.de> Cc: Steffen Trumtrar <s.trumtrar@pengutronix.de> Signed-off-by: Ian Abbott <abbotti@mev.co.uk> Reviewed-by: Ahmad Fatoum <a.fatoum@pengutronix.de> Link: https://lore.barebox.org/20211118130927.53123-1-abbotti@mev.co.uk Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'arch')
-rw-r--r--arch/arm/dts/socfpga.dtsi4
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/arm/dts/socfpga.dtsi b/arch/arm/dts/socfpga.dtsi
index 7789c9d3b5..56dbf0b97d 100644
--- a/arch/arm/dts/socfpga.dtsi
+++ b/arch/arm/dts/socfpga.dtsi
@@ -4,6 +4,10 @@
};
};
+&mmc {
+ reset-names = "reset";
+};
+
&watchdog0 {
resets = <&rst L4WD0_RESET>;
};