Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757364AbcJTIIz (ORCPT ); Thu, 20 Oct 2016 04:08:55 -0400 Received: from mail-qk0-f194.google.com ([209.85.220.194]:36577 "EHLO mail-qk0-f194.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1757226AbcJTIHp (ORCPT ); Thu, 20 Oct 2016 04:07:45 -0400 From: Tomeu Vizoso To: linux-kernel@vger.kernel.org Cc: Tomeu Vizoso , Randy Li , Jon Hunter , Heiko Stuebner , Rob Herring , Mark Rutland , Russell King , linux-arm-kernel@lists.infradead.org, linux-rockchip@lists.infradead.org, devicetree@vger.kernel.org Subject: [PATCH] ARM: dts: rockchip: add i2c-bus subnode to edp Date: Thu, 20 Oct 2016 10:07:25 +0200 Message-Id: <1476950845-28242-1-git-send-email-tomeu.vizoso@collabora.com> X-Mailer: git-send-email 2.7.4 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 812 Lines: 32 Add an empty 'i2c-bus' subnode to the edp node just so that the I2C core doesn't attemp to parse the 'ports' subnode as containing i2c devices. This is to avoid spurious failure messages such as: i2c i2c-6: of_i2c: modalias failure on /dp@ff970000/ports Signed-off-by: Tomeu Vizoso Cc: Randy Li Cc: Jon Hunter --- arch/arm/boot/dts/rk3288.dtsi | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/arch/arm/boot/dts/rk3288.dtsi b/arch/arm/boot/dts/rk3288.dtsi index 2f814ffeb605..94f4b7eecca2 100644 --- a/arch/arm/boot/dts/rk3288.dtsi +++ b/arch/arm/boot/dts/rk3288.dtsi @@ -1075,6 +1075,11 @@ }; }; }; + + i2c-bus { + #address-cells = <1>; + #size-cells = <0>; + }; }; hdmi: hdmi@ff980000 { -- 2.7.4