Received: by 10.223.185.116 with SMTP id b49csp731765wrg; Wed, 21 Feb 2018 06:06:09 -0800 (PST) X-Google-Smtp-Source: AH8x226wl+15u9eYyklVPaLuTJCXZY/26EvpuSVKBBLcNu8wls1h5z6uI2kbpfjtnUlBJaXjr0eB X-Received: by 10.99.114.77 with SMTP id c13mr2884529pgn.8.1519221969749; Wed, 21 Feb 2018 06:06:09 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1519221969; cv=none; d=google.com; s=arc-20160816; b=ilXn+dCXTLMc1TQDfMa7brhMJB9ipNzMQBdKex448TGEREwKM+sGYP8hsNLKJhLVt3 AOUYhtO3lhimoK+LqSq+okI5WVwD1pdoS4HEwRJ1SrgojTp2OspzxgKAoof1hHETN5+N E1XBN/ihomlwuv3luqcQ6RKL+X2wfTWLJm7TZ7QwpPVEqf5FThN++h7pLbm+7lscRwJV ptpO4SCJsVvdjWWoxJYgcFXOvleDGTFiRje13T603rcIxXl2gMpXArIOx2SIZteCVgRS Rvr7lpwuwWM/29Dpg3k9RpMShKNBee9ZPQIvsK5gauIeQ/R+Jy0+Ww433bhZaIHOPNyT xxJg== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:mime-version:user-agent:references :in-reply-to:message-id:date:subject:cc:to:from :arc-authentication-results; bh=TZna0AA5n9gUfnhaN14tyBx6xppCJxuVoPLyzAS3nfc=; b=VRBmUXQNp3gZJZVhZaRxzSQrRgmD7RNxturIt9zAj/AgURTQ/K7msHvi9/KhIyHS6p mfeo8gftfDkQvhpHTeW+hPxx7sfH+zh6qg2WyVNY9S/qxeJwnR391cvB2foRKGIuUB+w TlGMu5qigqbOM561+2Z6sTrP4UxF9dcOhJxhE/qDftENBHYD+jSKviKKt5g5yVX5bPO4 4KXvAK9ErHcn01elRFvWBLYLxCI9vUhOUfAYL0trODjHeQVWpNEJZMaxkJ9eOoZEi+am GPwn8P/YJTBijU/uOosIuhM6h8TLwWnxiu+++pC617hvLutMkTaPwpb+zjir5e15lEnv rR+Q== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id y4si1010743pgc.601.2018.02.21.06.05.53; Wed, 21 Feb 2018 06:06:09 -0800 (PST) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S936969AbeBUNzX (ORCPT + 99 others); Wed, 21 Feb 2018 08:55:23 -0500 Received: from mail.linuxfoundation.org ([140.211.169.12]:40064 "EHLO mail.linuxfoundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754480AbeBUNEt (ORCPT ); Wed, 21 Feb 2018 08:04:49 -0500 Received: from localhost (LFbn-1-12258-90.w90-92.abo.wanadoo.fr [90.92.71.90]) by mail.linuxfoundation.org (Postfix) with ESMTPSA id 95512116D; Wed, 21 Feb 2018 13:04:48 +0000 (UTC) From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, Arnd Bergmann , Krzysztof Kozlowski Subject: [PATCH 4.14 155/167] ARM: dts: exynos: fix RTC interrupt for exynos5410 Date: Wed, 21 Feb 2018 13:49:26 +0100 Message-Id: <20180221124533.318978056@linuxfoundation.org> X-Mailer: git-send-email 2.16.2 In-Reply-To: <20180221124524.639039577@linuxfoundation.org> References: <20180221124524.639039577@linuxfoundation.org> User-Agent: quilt/0.65 X-stable: review MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org 4.14-stable review patch. If anyone has any objections, please let me know. ------------------ From: Arnd Bergmann commit 5628a8ca14149ba4226e3bdce3a04c3b688435ad upstream. According to the comment added to exynos_dt_pmu_match[] in commit 8b283c025443 ("ARM: exynos4/5: convert pmu wakeup to stacked domains"), the RTC is not able to wake up the system through the PMU on Exynos5410, unlike Exynos5420. However, when the RTC DT node got added, it was a straight copy of the Exynos5420 node, which now causes a warning from dtc. This removes the incorrect interrupt-parent, which should get the interrupt working and avoid the warning. Fixes: e1e146b1b062 ("ARM: dts: exynos: Add RTC and I2C to Exynos5410") Signed-off-by: Arnd Bergmann Signed-off-by: Krzysztof Kozlowski Signed-off-by: Greg Kroah-Hartman --- arch/arm/boot/dts/exynos5410.dtsi | 1 - 1 file changed, 1 deletion(-) --- a/arch/arm/boot/dts/exynos5410.dtsi +++ b/arch/arm/boot/dts/exynos5410.dtsi @@ -333,7 +333,6 @@ &rtc { clocks = <&clock CLK_RTC>; clock-names = "rtc"; - interrupt-parent = <&pmu_system_controller>; status = "disabled"; };