From fdf8416a2b9fad1188106e0490975eff11f6b13a Mon Sep 17 00:00:00 2001 From: Ian Abbott Date: Thu, 18 Nov 2021 13:09:27 +0000 Subject: 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 Cc: Steffen Trumtrar Signed-off-by: Ian Abbott Reviewed-by: Ahmad Fatoum Link: https://lore.barebox.org/20211118130927.53123-1-abbotti@mev.co.uk Signed-off-by: Sascha Hauer --- arch/arm/dts/socfpga.dtsi | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'arch/arm') 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>; }; -- cgit v1.2.3