diff mbox series

[U-Boot] dm: Also remove interrupts property from SPL DT

Message ID a0fd0fb676710b7e82cdf84396656098f9fae945.1550829015.git.michal.simek@xilinx.com
State Accepted
Commit f00d89fd506755d68a224c19fd77c70e9199fcb4
Delegated to: Simon Glass
Headers show
Series [U-Boot] dm: Also remove interrupts property from SPL DT | expand

Commit Message

Michal Simek Feb. 22, 2019, 9:50 a.m. UTC
interrupt-parent property is removed already that's why there is no
reason to keep interrupts property if parent doesn't exist.

Signed-off-by: Michal Simek <michal.simek@xilinx.com>
---

 dts/Kconfig | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

Comments

Simon Glass March 10, 2019, 9:50 p.m. UTC | #1
On Fri, 22 Feb 2019 at 02:50, Michal Simek <michal.simek@xilinx.com> wrote:
>
> interrupt-parent property is removed already that's why there is no
> reason to keep interrupts property if parent doesn't exist.
>
> Signed-off-by: Michal Simek <michal.simek@xilinx.com>
> ---
>
>  dts/Kconfig | 8 ++++----
>  1 file changed, 4 insertions(+), 4 deletions(-)

Reviewed-by: Simon Glass <sjg@chromium.org>
diff mbox series

Patch

diff --git a/dts/Kconfig b/dts/Kconfig
index 3e85914d1153..b28b8af3bc20 100644
--- a/dts/Kconfig
+++ b/dts/Kconfig
@@ -234,10 +234,10 @@  config SPL_MULTI_DTB_FIT_USER_DEF_ADDR
 config OF_SPL_REMOVE_PROPS
 	string "List of device tree properties to drop for SPL"
 	depends on SPL_OF_CONTROL
-	default "interrupt-parent" if SPL_PINCTRL && SPL_CLK
-	default "clocks clock-names interrupt-parent" if SPL_PINCTRL
-	default "pinctrl-0 pinctrl-names interrupt-parent" if SPL_CLK
-	default "pinctrl-0 pinctrl-names clocks clock-names interrupt-parent"
+	default "interrupt-parent interrupts" if SPL_PINCTRL && SPL_CLK
+	default "clocks clock-names interrupt-parent interrupts" if SPL_PINCTRL
+	default "pinctrl-0 pinctrl-names interrupt-parent interrupts" if SPL_CLK
+	default "pinctrl-0 pinctrl-names clocks clock-names interrupt-parent interrupts"
 	help
 	  Since SPL normally runs in a reduced memory space, the device tree
 	  is cut down to only what is needed to load and start U-Boot. Only