All of lore.kernel.org
 help / color / mirror / Atom feed
From: alex@digriz.org.uk (Alexander Clouter)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCHv3 1/4] arm: orion5x: fix orion5x.dtsi gpio parameters
Date: Tue, 26 Mar 2013 21:44:46 +0000	[thread overview]
Message-ID: <1364334289-19669-2-git-send-email-alex@digriz.org.uk> (raw)
In-Reply-To: <1364334289-19669-1-git-send-email-alex@digriz.org.uk>

orion5x.dtsi is missing the gpio alias as well as including a typo
('ngpio' instead of 'ngpios') that prevented the orion-gpio driver
from loading.  Also missing were the interrupt-controller properties.
This patches resolves those glitches.

Signed-off-by: Alexander Clouter <alex@digriz.org.uk>
---
 arch/arm/boot/dts/orion5x.dtsi |    7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/arch/arm/boot/dts/orion5x.dtsi b/arch/arm/boot/dts/orion5x.dtsi
index 8aad00f..7c2a326 100644
--- a/arch/arm/boot/dts/orion5x.dtsi
+++ b/arch/arm/boot/dts/orion5x.dtsi
@@ -13,6 +13,9 @@
 	compatible = "marvell,orion5x";
 	interrupt-parent = <&intc>;
 
+	aliases {
+		gpio0 = &gpio0;
+	};
 	intc: interrupt-controller {
 		compatible = "marvell,orion-intc", "marvell,intc";
 		interrupt-controller;
@@ -32,7 +35,9 @@
 			#gpio-cells = <2>;
 			gpio-controller;
 			reg = <0x10100 0x40>;
-			ngpio = <32>;
+			ngpios = <32>;
+			interrupt-controller;
+			#interrupt-cells = <2>;
 			interrupts = <6>, <7>, <8>, <9>;
 		};
 
-- 
1.7.10.4

  reply	other threads:[~2013-03-26 21:44 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-03-26 21:44 [PATCHv3 0/4] arm: orion5x: devicetree fixups and additions Alexander Clouter
2013-03-26 21:44 ` Alexander Clouter [this message]
2013-03-28 17:25   ` [PATCHv3 1/4] arm: orion5x: fix orion5x.dtsi gpio parameters Jason Cooper
2013-03-26 21:44 ` [PATCHv3 2/4] arm: orion5x: add ehci bindings to dtsi Alexander Clouter
2013-03-31  0:16   ` Jason Cooper
2013-03-26 21:44 ` [PATCHv3 3/4] arm: orion5x: enable xor for orion5x platform Alexander Clouter
2013-03-31  0:17   ` Jason Cooper
2013-03-26 21:44 ` [PATCHv3 4/4] arm: orion5x: correct IRQ used in dtsi for mv_cesa Alexander Clouter
2013-03-28 17:25   ` Jason Cooper
2013-03-26 21:54 ` [PATCHv3 0/4] arm: orion5x: devicetree fixups and additions Andrew Lunn

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1364334289-19669-2-git-send-email-alex@digriz.org.uk \
    --to=alex@digriz.org.uk \
    --cc=linux-arm-kernel@lists.infradead.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.