From patchwork Fri Nov 6 14:24:07 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Felipe Balbi X-Patchwork-Id: 7569371 Return-Path: X-Original-To: patchwork-linux-omap@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork1.web.kernel.org (Postfix) with ESMTP id CB50C9F4F5 for ; Fri, 6 Nov 2015 14:24:50 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id DE7BD20665 for ; Fri, 6 Nov 2015 14:24:49 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 358F42061D for ; Fri, 6 Nov 2015 14:24:49 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757298AbbKFOYs (ORCPT ); Fri, 6 Nov 2015 09:24:48 -0500 Received: from arroyo.ext.ti.com ([192.94.94.40]:45674 "EHLO arroyo.ext.ti.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1757286AbbKFOYs (ORCPT ); Fri, 6 Nov 2015 09:24:48 -0500 Received: from dlelxv90.itg.ti.com ([172.17.2.17]) by arroyo.ext.ti.com (8.13.7/8.13.7) with ESMTP id tA6EOCbD031955; Fri, 6 Nov 2015 08:24:12 -0600 Received: from DLEE71.ent.ti.com (dlee71.ent.ti.com [157.170.170.114]) by dlelxv90.itg.ti.com (8.14.3/8.13.8) with ESMTP id tA6EOCrx006042; Fri, 6 Nov 2015 08:24:12 -0600 Received: from dlep32.itg.ti.com (157.170.170.100) by DLEE71.ent.ti.com (157.170.170.114) with Microsoft SMTP Server id 14.3.224.2; Fri, 6 Nov 2015 08:24:12 -0600 Received: from localhost (ileax41-snat.itg.ti.com [10.172.224.153]) by dlep32.itg.ti.com (8.14.3/8.13.8) with ESMTP id tA6EOBdh017815; Fri, 6 Nov 2015 08:24:11 -0600 From: Felipe Balbi To: Marek Belisko , Sebastian Reichel CC: , , Subject: Re: Linus HEAD build break In-Reply-To: <871tc31atk.fsf@saruman.tx.rr.com> References: <871tc31atk.fsf@saruman.tx.rr.com> User-Agent: Notmuch/0.21 (http://notmuchmail.org) Emacs/24.5.1 (x86_64-pc-linux-gnu) Date: Fri, 6 Nov 2015 08:24:07 -0600 Message-ID: <87y4ebyznc.fsf@saruman.tx.rr.com> MIME-Version: 1.0 Sender: linux-omap-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-omap@vger.kernel.org X-Spam-Status: No, score=-6.9 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_HI, T_RP_MATCHES_RCVD, T_TVD_MIME_EPI, UNPARSEABLE_RELAY autolearn=unavailable version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Hi again, Felipe Balbi writes: > Hi Marek, > > your commit af19161aaed7 ("ARM: dts: twl4030: Add iio properties for bci > subnode") breaks build on current linus/master (which current sits in this commit cannot be found in next. How come it's in linus/master ? If it had been in next, we'd find out about it a lot sooner and avoid the build regression. It seems author didn't build his own patch, considering the error is clear. Here's a patch, please merge it or provide a better version. Below has been build tested (omap2plus_defconfig) and boot tested (am437x SK, am437x IDK, beaglebone black) (yeah, I don't have boards which sport MADC around). 8<--------------------------------------------------------------- From 7af26f7123bad3e9c9dcfe9dfe9f4ad58e56f7cb Mon Sep 17 00:00:00 2001 From: Felipe Balbi Date: Fri, 6 Nov 2015 08:14:45 -0600 Subject: [PATCH] ARM: dts: twl4030: fix Monitoring ADC label commit af19161aaed7 ("ARM: dts: twl4030: Add iio properties for bci subnode") breaks build of several DTS files by referring to a label that doesn't exist. Fix it. Signed-off-by: Felipe Balbi --- arch/arm/boot/dts/twl4030.dtsi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm/boot/dts/twl4030.dtsi b/arch/arm/boot/dts/twl4030.dtsi index 482b7aa37808..c8197f209efc 100644 --- a/arch/arm/boot/dts/twl4030.dtsi +++ b/arch/arm/boot/dts/twl4030.dtsi @@ -22,7 +22,7 @@ charger: bci { compatible = "ti,twl4030-bci"; interrupts = <9>, <2>; - io-channels = <&twl4030_madc 11>; + io-channels = <&twl_madc 11>; io-channel-name = "vac"; bci3v1-supply = <&vusb3v1>; };