From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755157AbdARLRo (ORCPT ); Wed, 18 Jan 2017 06:17:44 -0500 Received: from foss.arm.com ([217.140.101.70]:47072 "EHLO foss.arm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753301AbdARKx4 (ORCPT ); Wed, 18 Jan 2017 05:53:56 -0500 From: Marc Zyngier To: linux-kernel@vger.kernel.org, devicetree@vger.kernel.org, linux-arm-kernel@lists.infradead.org Cc: Thomas Gleixner , Jason Cooper , Rob Herring , Mark Rutland , Tsahee Zidenberg , Antoine Tenart , Russell King , =?UTF-8?q?Beno=C3=AEt=20Cousson?= , Tony Lindgren , Kukjin Kim , Krzysztof Kozlowski , Javier Martinez Canillas , Shawn Guo , Sascha Hauer , Fabio Estevam , Santosh Shilimkar , Matthias Brugger , Simon Horman , Magnus Damm , Heiko Stuebner , Maxime Ripard , Chen-Yu Tsai , arm@kernel.org Subject: [PATCH 1/2] dt-bindings: arm,gic: Fix binding example for a virt-capable GIC Date: Wed, 18 Jan 2017 10:53:30 +0000 Message-Id: <1484736811-24002-2-git-send-email-marc.zyngier@arm.com> X-Mailer: git-send-email 2.1.4 In-Reply-To: <1484736811-24002-1-git-send-email-marc.zyngier@arm.com> References: <1484736811-24002-1-git-send-email-marc.zyngier@arm.com> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org The joys of copy/paste: the example of a virtualization capable GIC in the DT binding was wrong, and propagated to dozens of platforms. Oh well. Let's fix the source of the crap before tackling individual offenders. Signed-off-by: Marc Zyngier --- Documentation/devicetree/bindings/interrupt-controller/arm,gic.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Documentation/devicetree/bindings/interrupt-controller/arm,gic.txt b/Documentation/devicetree/bindings/interrupt-controller/arm,gic.txt index 5393e2a..a3d51ed 100644 --- a/Documentation/devicetree/bindings/interrupt-controller/arm,gic.txt +++ b/Documentation/devicetree/bindings/interrupt-controller/arm,gic.txt @@ -107,11 +107,11 @@ Required properties: Example: interrupt-controller@2c001000 { - compatible = "arm,cortex-a15-gic"; + compatible = "arm,gic-400"; #interrupt-cells = <3>; interrupt-controller; reg = <0x2c001000 0x1000>, - <0x2c002000 0x1000>, + <0x2c002000 0x2000>, <0x2c004000 0x2000>, <0x2c006000 0x2000>; interrupts = <1 9 0xf04>; -- 2.1.4