From patchwork Tue Aug 23 05:03:34 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: manjugk manjugk X-Patchwork-Id: 1087152 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter2.kernel.org (8.14.4/8.14.4) with ESMTP id p7N4kQDZ015378 for ; Tue, 23 Aug 2011 04:46:37 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751502Ab1HWEqh (ORCPT ); Tue, 23 Aug 2011 00:46:37 -0400 Received: from [117.192.64.96] ([117.192.64.96]:54492 "EHLO manju-desktop" rhost-flags-FAIL-FAIL-OK-FAIL) by vger.kernel.org with ESMTP id S1751407Ab1HWEqg (ORCPT ); Tue, 23 Aug 2011 00:46:36 -0400 To: devicetree-discuss@lists.ozlabs.org Date: Tue, 23 Aug 2011 10:03:34 +0500 Subject: [RFC/PATCH v2 06/13] dt: omap3: add omap-device compatible property Envelope-To: devicetree-discuss@lists.ozlabs.org, linux-omap@vger.kernel.org, linux-arm-kernel@lists.infradead.org, grant.likely@secretlab.ca References: <1314074021-25186-1-git-send-email-manjugk@ti.com> CC: linux-omap@vger.kernel.org, linux-arm-kernel@lists.infradead.org, grant.likely@secretlab.ca Message-ID: <1314074021-25186-7-git-send-email-manjugk@ti.com> From: "G, Manjunath Kondaiah" Received: from manju-desktop (Citadel from userid 1000) by manju-desktop; Tue, 23 Aug 2011 10:03:43 +0500 X-Mailer: git-send-email 1.7.4.1 Sender: linux-omap-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-omap@vger.kernel.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.6 (demeter2.kernel.org [140.211.167.43]); Tue, 23 Aug 2011 04:46:38 +0000 (UTC) Add "omap-device" to the i2c controllers compatible property. Signed-off-by: G, Manjunath Kondaiah --- arch/arm/boot/dts/omap3.dtsi | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/arch/arm/boot/dts/omap3.dtsi b/arch/arm/boot/dts/omap3.dtsi index 9ea8257..f64c63d 100644 --- a/arch/arm/boot/dts/omap3.dtsi +++ b/arch/arm/boot/dts/omap3.dtsi @@ -31,7 +31,7 @@ i2c1: i2c@70000 { #address-cells = <1>; #size-cells = <0>; - compatible = "ti,omap-i2c"; + compatible = "ti,omap-i2c", "ti,omap-device"; reg = <0x70000 0x100>; interrupts = < 88 >; }; @@ -39,7 +39,7 @@ i2c2: i2c@72000 { #address-cells = <1>; #size-cells = <0>; - compatible = "ti,omap-i2c"; + compatible = "ti,omap-i2c", "ti,omap-device"; reg = <0x72000 0x100>; interrupts = < 89 >; }; @@ -47,7 +47,7 @@ i2c3: i2c@60000 { #address-cells = <1>; #size-cells = <0>; - compatible = "ti,omap-i2c"; + compatible = "ti,omap-i2c", "ti,omap-device"; reg = <0x60000 0x100>; interrupts = < 93 >; };