* [PATCH] arm: dts: omap3: Remove interrupt-parent property @ 2017-06-27 5:33 karthik [not found] ` <1498541590-4550-1-git-send-email-karthik-fINqtvHxh+hg9hUCZPvPmw@public.gmane.org> 0 siblings, 1 reply; 4+ messages in thread From: karthik @ 2017-06-27 5:33 UTC (permalink / raw) To: bcousson, tony, robh+dt, mark.rutland, linux Cc: linux-omap, devicetree, linux-arm-kernel, linux-kernel, sunil.m, Karthik Tummala From: Karthik Tummala <karthik@techveda.org> All nodes inhert "interrupt-parent" property from root node. So removed that property from usbhsohci, usbhsehci, ssi_port1, ssi_port2 nodes. Signed-off-by: Karthik Tummala <karthik@techveda.org> --- arch/arm/boot/dts/omap3.dtsi | 4 ---- 1 file changed, 4 deletions(-) diff --git a/arch/arm/boot/dts/omap3.dtsi b/arch/arm/boot/dts/omap3.dtsi index a3ff493..bdaf30c 100644 --- a/arch/arm/boot/dts/omap3.dtsi +++ b/arch/arm/boot/dts/omap3.dtsi @@ -713,14 +713,12 @@ usbhsohci: ohci@48064400 { compatible = "ti,ohci-omap3"; reg = <0x48064400 0x400>; - interrupt-parent = <&intc>; interrupts = <76>; }; usbhsehci: ehci@48064800 { compatible = "ti,ehci-omap"; reg = <0x48064800 0x400>; - interrupt-parent = <&intc>; interrupts = <77>; }; }; @@ -831,7 +829,6 @@ reg-names = "tx", "rx"; - interrupt-parent = <&intc>; interrupts = <67>, <68>; }; @@ -844,7 +841,6 @@ reg-names = "tx", "rx"; - interrupt-parent = <&intc>; interrupts = <69>, <70>; }; -- 1.9.1 ^ permalink raw reply related [flat|nested] 4+ messages in thread
[parent not found: <1498541590-4550-1-git-send-email-karthik-fINqtvHxh+hg9hUCZPvPmw@public.gmane.org>]
* Re: [PATCH] arm: dts: omap3: Remove interrupt-parent property [not found] ` <1498541590-4550-1-git-send-email-karthik-fINqtvHxh+hg9hUCZPvPmw@public.gmane.org> @ 2017-06-27 5:46 ` Suniel Mahesh 2017-06-27 6:47 ` [PATCH v2] arm: dts: omap3: Remove needless " karthik 0 siblings, 1 reply; 4+ messages in thread From: Suniel Mahesh @ 2017-06-27 5:46 UTC (permalink / raw) To: karthik-fINqtvHxh+hg9hUCZPvPmw, bcousson-rdvid1DuHRBWk0Htik3J/w, tony-4v6yS6AI5VpBDgjK7y7TUQ, robh+dt-DgEjT+Ai2ygdnm+yROfE0A, mark.rutland-5wv7dgnIgG8, linux-I+IVW8TIWO2tmTQ+vhA3Yw Cc: linux-omap-u79uwXL29TY76Z2rM5mHXA, devicetree-u79uwXL29TY76Z2rM5mHXA, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r, linux-kernel-u79uwXL29TY76Z2rM5mHXA On Tuesday 27 June 2017 11:03 AM, karthik-fINqtvHxh+hg9hUCZPvPmw@public.gmane.org wrote: > From: Karthik Tummala <karthik-fINqtvHxh+hg9hUCZPvPmw@public.gmane.org> > Please change the subject of the patch to something which is more meaningful and which reflect the changes done to the code base. > All nodes inhert "interrupt-parent" property from root > node. So removed that property from usbhsohci, usbhsehci, > ssi_port1, ssi_port2 nodes. Adjust description accordingly. > > Signed-off-by: Karthik Tummala <karthik-fINqtvHxh+hg9hUCZPvPmw@public.gmane.org> > --- > arch/arm/boot/dts/omap3.dtsi | 4 ---- > 1 file changed, 4 deletions(-) > > diff --git a/arch/arm/boot/dts/omap3.dtsi b/arch/arm/boot/dts/omap3.dtsi > index a3ff493..bdaf30c 100644 > --- a/arch/arm/boot/dts/omap3.dtsi > +++ b/arch/arm/boot/dts/omap3.dtsi > @@ -713,14 +713,12 @@ > usbhsohci: ohci@48064400 { > compatible = "ti,ohci-omap3"; > reg = <0x48064400 0x400>; > - interrupt-parent = <&intc>; > interrupts = <76>; > }; > > usbhsehci: ehci@48064800 { > compatible = "ti,ehci-omap"; > reg = <0x48064800 0x400>; > - interrupt-parent = <&intc>; > interrupts = <77>; > }; > }; > @@ -831,7 +829,6 @@ > reg-names = "tx", > "rx"; > > - interrupt-parent = <&intc>; > interrupts = <67>, > <68>; > }; > @@ -844,7 +841,6 @@ > reg-names = "tx", > "rx"; > > - interrupt-parent = <&intc>; > interrupts = <69>, > <70>; > }; > Thanks Suniel -- To unsubscribe from this list: send the line "unsubscribe devicetree" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH v2] arm: dts: omap3: Remove needless interrupt-parent property 2017-06-27 5:46 ` Suniel Mahesh @ 2017-06-27 6:47 ` karthik 2017-08-10 16:38 ` Tony Lindgren 0 siblings, 1 reply; 4+ messages in thread From: karthik @ 2017-06-27 6:47 UTC (permalink / raw) To: bcousson, tony, robh+dt, mark.rutland Cc: linux-omap, devicetree, linux-arm-kernel, linux-kernel, sunil.m, Karthik Tummala From: Karthik Tummala <karthik@techveda.org> 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> --- Changes for v2: - Made changes to subject & description as suggested by Suniel Mahesh. --- arch/arm/boot/dts/omap3.dtsi | 4 ---- 1 file changed, 4 deletions(-) diff --git a/arch/arm/boot/dts/omap3.dtsi b/arch/arm/boot/dts/omap3.dtsi index a3ff493..bdaf30c 100644 --- a/arch/arm/boot/dts/omap3.dtsi +++ b/arch/arm/boot/dts/omap3.dtsi @@ -713,14 +713,12 @@ usbhsohci: ohci@48064400 { compatible = "ti,ohci-omap3"; reg = <0x48064400 0x400>; - interrupt-parent = <&intc>; interrupts = <76>; }; usbhsehci: ehci@48064800 { compatible = "ti,ehci-omap"; reg = <0x48064800 0x400>; - interrupt-parent = <&intc>; interrupts = <77>; }; }; @@ -831,7 +829,6 @@ reg-names = "tx", "rx"; - interrupt-parent = <&intc>; interrupts = <67>, <68>; }; @@ -844,7 +841,6 @@ reg-names = "tx", "rx"; - interrupt-parent = <&intc>; interrupts = <69>, <70>; }; -- 1.9.1 ^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH v2] arm: dts: omap3: Remove needless interrupt-parent property 2017-06-27 6:47 ` [PATCH v2] arm: dts: omap3: Remove needless " karthik @ 2017-08-10 16:38 ` Tony Lindgren 0 siblings, 0 replies; 4+ messages in thread From: Tony Lindgren @ 2017-08-10 16:38 UTC (permalink / raw) To: karthik Cc: bcousson, robh+dt, mark.rutland, linux-omap, devicetree, linux-arm-kernel, linux-kernel, sunil.m * karthik@techveda.org <karthik@techveda.org> [170626 23:48]: > From: Karthik Tummala <karthik@techveda.org> > > 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> > --- > Changes for v2: > - Made changes to subject & description as suggested by > Suniel Mahesh. Applying into omap-for-v4.14/dt thanks. Tony ^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2017-08-10 16:38 UTC | newest] Thread overview: 4+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2017-06-27 5:33 [PATCH] arm: dts: omap3: Remove interrupt-parent property karthik [not found] ` <1498541590-4550-1-git-send-email-karthik-fINqtvHxh+hg9hUCZPvPmw@public.gmane.org> 2017-06-27 5:46 ` Suniel Mahesh 2017-06-27 6:47 ` [PATCH v2] arm: dts: omap3: Remove needless " karthik 2017-08-10 16:38 ` Tony Lindgren
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).