mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 15:14:43 +00:00
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>
This commit is contained in:
parent
174538845b
commit
f00d89fd50
1 changed files with 4 additions and 4 deletions
|
@ -291,10 +291,10 @@ config SPL_MULTI_DTB_FIT_USER_DEF_ADDR
|
||||||
config OF_SPL_REMOVE_PROPS
|
config OF_SPL_REMOVE_PROPS
|
||||||
string "List of device tree properties to drop for SPL"
|
string "List of device tree properties to drop for SPL"
|
||||||
depends on SPL_OF_CONTROL
|
depends on SPL_OF_CONTROL
|
||||||
default "interrupt-parent" if SPL_PINCTRL && SPL_CLK
|
default "interrupt-parent interrupts" if SPL_PINCTRL && SPL_CLK
|
||||||
default "clocks clock-names interrupt-parent" if SPL_PINCTRL
|
default "clocks clock-names interrupt-parent interrupts" if SPL_PINCTRL
|
||||||
default "pinctrl-0 pinctrl-names interrupt-parent" if SPL_CLK
|
default "pinctrl-0 pinctrl-names interrupt-parent interrupts" if SPL_CLK
|
||||||
default "pinctrl-0 pinctrl-names clocks clock-names interrupt-parent"
|
default "pinctrl-0 pinctrl-names clocks clock-names interrupt-parent interrupts"
|
||||||
help
|
help
|
||||||
Since SPL normally runs in a reduced memory space, the device tree
|
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
|
is cut down to only what is needed to load and start U-Boot. Only
|
||||||
|
|
Loading…
Reference in a new issue