From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 94A501519AA; Wed, 5 Feb 2025 14:12:07 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1738764727; cv=none; b=C/kCc4Gw5+YuPhp8l7Vyg2brnKD42qxlDXoNakPnIVvJYUtaOaVLn+2DvYRc3XeUkuuuusoKc4sxO35YzEwLl/vopDDcu13tK3Gjhv1oMrQ7YywIDHvxnZpbHOE7pgjGZKzySas0FOx+Cea5240lMKVGiTudlCPEI5+rFlO/xHk= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1738764727; c=relaxed/simple; bh=cks5aMIyqVAdbjfgpt4a2+pNq+mhDBCjr+MBZklyDac=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=fmqHIu40iHQuF/kHTHClb8uUwYrLaqUMPjCrmQIvqgBlyLstuL6jzP9HG/eIPdtv8ktlYKKyQo9C/bpDvV8sGzfsFJGkcC+dzQ0hv9o0lxTUNVhtKqTJ5+ERmK5R0eaM2P/mRUpJHSOGjNutgqC61rK7oIxAmMqC17plQ4XPIQg= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=L+KnFDwk; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="L+KnFDwk" Received: by smtp.kernel.org (Postfix) with ESMTPSA id F162AC4CED1; Wed, 5 Feb 2025 14:12:06 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1738764727; bh=cks5aMIyqVAdbjfgpt4a2+pNq+mhDBCjr+MBZklyDac=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=L+KnFDwk5wZAFR7FVoD9ucC3JfKewwz2hv2YERqoFUFQhwKwHES7jmsA4hq0qRcrd QDcnktgFW0s/CdL31VX8F43AGoqyrdAKJDkLRY4zMnZvTRvaWJ4S/5TSxNcGF3gMby qcnq0aVKEy4ko56l9tyCRXP3XHZT+r1iTPqzzn4Y= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Val Packett , AngeloGioacchino Del Regno , Sasha Levin Subject: [PATCH 6.6 199/393] arm64: dts: mediatek: mt8516: fix wdt irq type Date: Wed, 5 Feb 2025 14:41:58 +0100 Message-ID: <20250205134427.913450774@linuxfoundation.org> X-Mailer: git-send-email 2.48.1 In-Reply-To: <20250205134420.279368572@linuxfoundation.org> References: <20250205134420.279368572@linuxfoundation.org> User-Agent: quilt/0.68 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.6-stable review patch. If anyone has any objections, please let me know. ------------------ From: Val Packett [ Upstream commit 03a80442030e7147391738fb6cbe5fa0b3b91bb1 ] The GICv2 does not support EDGE_FALLING interrupts, so the watchdog would refuse to attach due to a failing check coming from the GIC driver. Fixes: 5236347bde42 ("arm64: dts: mediatek: add dtsi for MT8516") Signed-off-by: Val Packett Reviewed-by: AngeloGioacchino Del Regno Link: https://lore.kernel.org/r/20241204190524.21862-3-val@packett.cool Signed-off-by: AngeloGioacchino Del Regno Signed-off-by: Sasha Levin --- arch/arm64/boot/dts/mediatek/mt8516.dtsi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm64/boot/dts/mediatek/mt8516.dtsi b/arch/arm64/boot/dts/mediatek/mt8516.dtsi index 1520c4caa1605..576be8363ec1c 100644 --- a/arch/arm64/boot/dts/mediatek/mt8516.dtsi +++ b/arch/arm64/boot/dts/mediatek/mt8516.dtsi @@ -206,7 +206,7 @@ compatible = "mediatek,mt8516-wdt", "mediatek,mt6589-wdt"; reg = <0 0x10007000 0 0x1000>; - interrupts = ; + interrupts = ; #reset-cells = <1>; }; -- 2.39.5