From mboxrd@z Thu Jan 1 00:00:00 1970 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=-9.8 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH,MAILING_LIST_MULTI, SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS,USER_AGENT_GIT autolearn=unavailable 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 4F74DC2D0DB for ; Wed, 22 Jan 2020 09:42:20 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 1A17024684 for ; Wed, 22 Jan 2020 09:42:20 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1579686140; bh=P4BITB953pc9Zi4u61h9J8Co5S+Xeh3jJJKspwO/i+U=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=QaCZJu8UT7VNs+AgoBo2fvbrU+scxPQIBdWsiMIWoSJ7CoFwpOJds4Zj6AvBdvekw 5LDJiyKkAEx0GrmnKixbSX2b11yONSK3Ax6/V41Lz4JgPelXYWm/Chg8C2AAneZGdI aV4+XqiwJGeESilhOC448DHZJMjBCqW5YP8W/AMM= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S2387695AbgAVJmR (ORCPT ); Wed, 22 Jan 2020 04:42:17 -0500 Received: from mail.kernel.org ([198.145.29.99]:33828 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1733219AbgAVJmJ (ORCPT ); Wed, 22 Jan 2020 04:42:09 -0500 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 354CE24686; Wed, 22 Jan 2020 09:42:08 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1579686128; bh=P4BITB953pc9Zi4u61h9J8Co5S+Xeh3jJJKspwO/i+U=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=xPo6vNbFs5389M56EJHE5zDaqoMAc31y0vqXPRoCA3Qrz9DUDEp/skreap2UaqQX/ GYwogkeavyfWy23XyWkSYc/7Kx6XQDdjtGSIQdpbQg4+pNxJrUbw+5MM5buQ5PETPj 29ZfACamotB4Ha1poxaQowRdIIP4n7yaQLiVBiQY= From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, Meng Li , Dinh Nguyen , Sasha Levin Subject: [PATCH 4.19 054/103] arm64: dts: agilex/stratix10: fix pmu interrupt numbers Date: Wed, 22 Jan 2020 10:29:10 +0100 Message-Id: <20200122092811.810664924@linuxfoundation.org> X-Mailer: git-send-email 2.25.0 In-Reply-To: <20200122092803.587683021@linuxfoundation.org> References: <20200122092803.587683021@linuxfoundation.org> User-Agent: quilt/0.66 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Dinh Nguyen [ Upstream commit 210de0e996aee8e360ccc9e173fe7f0a7ed2f695 ] Fix up the correct interrupt numbers for the PMU unit on Agilex and Stratix10. Fixes: 78cd6a9d8e15 ("arm64: dts: Add base stratix 10 dtsi") Cc: linux-stable Reported-by: Meng Li Signed-off-by: Dinh Nguyen Signed-off-by: Sasha Levin --- arch/arm64/boot/dts/altera/socfpga_stratix10.dtsi | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/arch/arm64/boot/dts/altera/socfpga_stratix10.dtsi b/arch/arm64/boot/dts/altera/socfpga_stratix10.dtsi index 9a1ea8a46405..85fffe03b96b 100644 --- a/arch/arm64/boot/dts/altera/socfpga_stratix10.dtsi +++ b/arch/arm64/boot/dts/altera/socfpga_stratix10.dtsi @@ -59,10 +59,10 @@ pmu { compatible = "arm,armv8-pmuv3"; - interrupts = <0 120 8>, - <0 121 8>, - <0 122 8>, - <0 123 8>; + interrupts = <0 170 4>, + <0 171 4>, + <0 172 4>, + <0 173 4>; interrupt-affinity = <&cpu0>, <&cpu1>, <&cpu2>, -- 2.20.1