From mboxrd@z Thu Jan 1 00:00:00 1970 From: Sean Paul Subject: [PATCH v4 15/34] ARM: dts: exynos: Add i2c phandles to hdmi node Date: Thu, 30 Jan 2014 16:19:14 -0500 Message-ID: <1391116773-28471-16-git-send-email-seanpaul@chromium.org> References: <1391116773-28471-1-git-send-email-seanpaul@chromium.org> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: Received: from mail-qa0-f43.google.com (mail-qa0-f43.google.com [209.85.216.43]) by gabe.freedesktop.org (Postfix) with ESMTP id 9D1CE45D2F for ; Thu, 30 Jan 2014 13:20:15 -0800 (PST) Received: by mail-qa0-f43.google.com with SMTP id o15so5174444qap.2 for ; Thu, 30 Jan 2014 13:20:15 -0800 (PST) In-Reply-To: <1391116773-28471-1-git-send-email-seanpaul@chromium.org> List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: dri-devel-bounces@lists.freedesktop.org Errors-To: dri-devel-bounces@lists.freedesktop.org To: dri-devel@lists.freedesktop.org, inki.dae@samsung.com Cc: marcheu@chromium.org List-Id: dri-devel@lists.freedesktop.org This patch references the hdmi ddc and phy i2c nodes directly in the hdmi node to match the updated bindings. Signed-off-by: Sean Paul --- Changes in v4: - Added patch arch/arm/boot/dts/cros5250-common.dtsi | 6 ++++-- arch/arm/boot/dts/exynos5250-smdk5250.dts | 6 ++++-- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/arch/arm/boot/dts/cros5250-common.dtsi b/arch/arm/boot/dts/cros5250-common.dtsi index 9b186ac..ada9d99 100644 --- a/arch/arm/boot/dts/cros5250-common.dtsi +++ b/arch/arm/boot/dts/cros5250-common.dtsi @@ -201,7 +201,7 @@ samsung,i2c-sda-delay = <100>; samsung,i2c-max-bus-freq = <66000>; - hdmiddc@50 { + hdmi_ddc_node: hdmiddc@50 { compatible = "samsung,exynos4210-hdmiddc"; reg = <0x50>; }; @@ -235,7 +235,7 @@ samsung,i2c-sda-delay = <100>; samsung,i2c-max-bus-freq = <378000>; - hdmiphy@38 { + hdmi_phy_node: hdmiphy@38 { compatible = "samsung,exynos4212-hdmiphy"; reg = <0x38>; }; @@ -313,6 +313,8 @@ hdmi { hpd-gpio = <&gpx3 7 0>; + ddc = <&hdmi_ddc_node>; + phy = <&hdmi_phy_node>; }; gpio-keys { diff --git a/arch/arm/boot/dts/exynos5250-smdk5250.dts b/arch/arm/boot/dts/exynos5250-smdk5250.dts index f86d567..b14985a 100644 --- a/arch/arm/boot/dts/exynos5250-smdk5250.dts +++ b/arch/arm/boot/dts/exynos5250-smdk5250.dts @@ -104,7 +104,7 @@ samsung,i2c-sda-delay = <100>; samsung,i2c-max-bus-freq = <66000>; - hdmiddc@50 { + hdmi_ddc_node: hdmiddc@50 { compatible = "samsung,exynos4210-hdmiddc"; reg = <0x50>; }; @@ -134,7 +134,7 @@ samsung,i2c-sda-delay = <100>; samsung,i2c-max-bus-freq = <66000>; - hdmiphy@38 { + hdmi_phy_node: hdmiphy@38 { compatible = "samsung,exynos4212-hdmiphy"; reg = <0x38>; }; @@ -220,6 +220,8 @@ hdmi { hpd-gpio = <&gpx3 7 0>; + ddc = <&hdmi_ddc_node>; + phy = <&hdmi_phy_node>; }; codec@11000000 { -- 1.8.5.1