From patchwork Tue Mar 17 10:55:13 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Greg KH X-Patchwork-Id: 229288 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.8 required=3.0 tests=DKIMWL_WL_HIGH, DKIM_SIGNED, DKIM_VALID, HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI, SIGNED_OFF_BY, SPF_HELO_NONE, SPF_PASS, USER_AGENT_GIT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 0317EC18E5B for ; Tue, 17 Mar 2020 11:11:45 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id CF34C20714 for ; Tue, 17 Mar 2020 11:11:44 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1584443504; bh=5n2T/TY30yFG4QF42kIjzlu/f/WGKrZ90NYm0rmBFa8=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=WW3Pkup2lOhyTNxAn3UzgWkvQM7HuUxgoIERn9Zqr51h8Vm0qey8ic81vpvTrheps QZF4Rg1vDL7uK+xMdUmelREr4f8S59cX+ahGiIJc+N1YASqezGM4A7k3R/gGLH8ehb H4H75qD7XO7lHrdYOz6KM4BwDxolnIHZSmd6JGm8= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727176AbgCQLLn (ORCPT ); Tue, 17 Mar 2020 07:11:43 -0400 Received: from mail.kernel.org ([198.145.29.99]:55080 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1729312AbgCQLLm (ORCPT ); Tue, 17 Mar 2020 07:11:42 -0400 Received: from localhost (83-86-89-107.cable.dynamic.v4.ziggo.nl [83.86.89.107]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 7D72B205ED; Tue, 17 Mar 2020 11:11:39 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1584443500; bh=5n2T/TY30yFG4QF42kIjzlu/f/WGKrZ90NYm0rmBFa8=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=B9eVVP+2tsERoLD8MzWsO12DpW3Ma2lmVLhuo0GXf8jTgl2x3gMkr6LsmFDIe+4lH RaX7rWzbhEKEvm5rZja0MZzF7QC/c81DPWjqX/VLwEvpe6RQR0k2j6RJPhWRDyuJyI oBG1wMftYiBENJr7yJuH8CUnww10ugjZUD0bOi6E= From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, "H. Nikolaus Schaller" , Paul Cercueil , Thomas Bogendoerfer Subject: [PATCH 5.5 103/151] MIPS: DTS: CI20: fix interrupt for pcf8563 RTC Date: Tue, 17 Mar 2020 11:55:13 +0100 Message-Id: <20200317103333.778017795@linuxfoundation.org> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20200317103326.593639086@linuxfoundation.org> References: <20200317103326.593639086@linuxfoundation.org> User-Agent: quilt/0.66 MIME-Version: 1.0 Sender: stable-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: stable@vger.kernel.org From: H. Nikolaus Schaller commit 130ab8819d81bd96f1a71e8461a8f73edf1fbe82 upstream. Interrupts should not be specified by interrupt line but by gpio parent and reference. Fixes: 73f2b940474d ("MIPS: CI20: DTS: Add I2C nodes") Cc: stable@vger.kernel.org Signed-off-by: H. Nikolaus Schaller Reviewed-by: Paul Cercueil Signed-off-by: Thomas Bogendoerfer Signed-off-by: Greg Kroah-Hartman --- arch/mips/boot/dts/ingenic/ci20.dts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) --- a/arch/mips/boot/dts/ingenic/ci20.dts +++ b/arch/mips/boot/dts/ingenic/ci20.dts @@ -4,6 +4,7 @@ #include "jz4780.dtsi" #include #include +#include #include / { @@ -270,7 +271,9 @@ rtc@51 { compatible = "nxp,pcf8563"; reg = <0x51>; - interrupts = <110>; + + interrupt-parent = <&gpf>; + interrupts = <30 IRQ_TYPE_LEVEL_LOW>; }; };