summaryrefslogtreecommitdiff
path: root/dts
diff options
context:
space:
mode:
authorMichal Simek <michal.simek@xilinx.com>2019-02-22 10:50:23 +0100
committerSimon Glass <sjg@chromium.org>2019-04-11 20:10:05 -0600
commitf00d89fd506755d68a224c19fd77c70e9199fcb4 (patch)
tree1fd1e317a63aa2f0f94c3af587718b48ef0398b1 /dts
parent174538845b1490d05a8c97c49088c54f4365551c (diff)
dm: Also remove interrupts property from SPL DT
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> Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'dts')
-rw-r--r--dts/Kconfig8
1 files changed, 4 insertions, 4 deletions
diff --git a/dts/Kconfig b/dts/Kconfig
index a5f30c8fd0..c9ab66cccc 100644
--- a/dts/Kconfig
+++ b/dts/Kconfig
@@ -291,10 +291,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