mirror of https://gitee.com/openkylin/linux.git
ARM: dts: omap3: Remove needless interrupt-parent property
All nodes inhert "interrupt-parent" property from root node. Removed the aforementioned property from usbhsohci, usbhsehci, ssi_port1, ssi_port2 nodes to avoid duplication. Signed-off-by: Karthik Tummala <karthik@techveda.org> Signed-off-by: Tony Lindgren <tony@atomide.com>
This commit is contained in:
parent
3a8ed20db8
commit
8af928cb65
|
@ -713,14 +713,12 @@ usbhshost: usbhshost@48064000 {
|
||||||
usbhsohci: ohci@48064400 {
|
usbhsohci: ohci@48064400 {
|
||||||
compatible = "ti,ohci-omap3";
|
compatible = "ti,ohci-omap3";
|
||||||
reg = <0x48064400 0x400>;
|
reg = <0x48064400 0x400>;
|
||||||
interrupt-parent = <&intc>;
|
|
||||||
interrupts = <76>;
|
interrupts = <76>;
|
||||||
};
|
};
|
||||||
|
|
||||||
usbhsehci: ehci@48064800 {
|
usbhsehci: ehci@48064800 {
|
||||||
compatible = "ti,ehci-omap";
|
compatible = "ti,ehci-omap";
|
||||||
reg = <0x48064800 0x400>;
|
reg = <0x48064800 0x400>;
|
||||||
interrupt-parent = <&intc>;
|
|
||||||
interrupts = <77>;
|
interrupts = <77>;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
@ -831,7 +829,6 @@ ssi_port1: ssi-port@4805a000 {
|
||||||
reg-names = "tx",
|
reg-names = "tx",
|
||||||
"rx";
|
"rx";
|
||||||
|
|
||||||
interrupt-parent = <&intc>;
|
|
||||||
interrupts = <67>,
|
interrupts = <67>,
|
||||||
<68>;
|
<68>;
|
||||||
};
|
};
|
||||||
|
@ -844,7 +841,6 @@ ssi_port2: ssi-port@4805b000 {
|
||||||
reg-names = "tx",
|
reg-names = "tx",
|
||||||
"rx";
|
"rx";
|
||||||
|
|
||||||
interrupt-parent = <&intc>;
|
|
||||||
interrupts = <69>,
|
interrupts = <69>,
|
||||||
<70>;
|
<70>;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue