From patchwork Tue Dec 12 21:47:22 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Arnd Bergmann X-Patchwork-Id: 13490034 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org 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.lore.kernel.org (Postfix) with ESMTPS id 926B4C4332F for ; Tue, 12 Dec 2023 21:47:43 +0000 (UTC) Received: by smtp.kernel.org (Postfix) id 58E09C433C8; Tue, 12 Dec 2023 21:47:43 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 73F05C433CA; Tue, 12 Dec 2023 21:47:40 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1702417663; bh=6YruCECQNqriAxLtk267bYMIHs/Tox5AgVT0K5CGKo4=; h=From:List-Id:To:Cc:Subject:Date:From; b=ejWKvJpYGg7GLTCRZvqJ+KRRJkgOgl45d55UP9zn5amtV6+LgF/XKhI5WUtewgjWf 8puG2X2OXjXn8W29aUxMjrA3atFy6i4+Zm7vjH0FObCwLI+zZ9fZVafnb8ApFuzPYl u4LnI/3BgXa4oXe7I40OcUEDWrhM2j3OP9G9JY56K8fz3ycXfLy19w85v0hZ1fqo9K zbfslj0+5AadVN0Rwe/5C02871OQGY59S5kc5FmDr6QV/vWs8VDxNr+wTas+HDSGfL /2iNrosy3sPDr1/fHEP0RLkHtSxWo2E6D073tSUGN3Q6TynPgTGYm/cRHSyCCEO7Pz NXFc1SkXhVAIQ== From: Arnd Bergmann List-Id: To: soc@kernel.org, Matthias Brugger , AngeloGioacchino Del Regno , Ben Lok , Macpaul Lin Cc: Arnd Bergmann , Rob Herring , Krzysztof Kozlowski , Conor Dooley , devicetree@vger.kernel.org, linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-mediatek@lists.infradead.org Subject: [PATCH] arm64: mediatek: remove broken pmic interrupt property Date: Tue, 12 Dec 2023 22:47:22 +0100 Message-Id: <20231212214737.230115-1-arnd@kernel.org> X-Mailer: git-send-email 2.39.2 MIME-Version: 1.0 From: Arnd Bergmann The pmic is connected to the GIC, which uses four-cell interrupt properties, but its interrupt is specified as two-cell that would only make sense for the GPIO irqchip: arch/arm64/boot/dts/mediatek/mt8195.dtsi:464.4-27: Warning (interrupts_property): /soc/i2c@11d01000/pmic@34:#interrupt-cells: size is (8), expected multiple of 16 Remove the interrupt for now to shut up the warning. When someone figures out what the correct interrupt and parent are, we can add it back. Fixes: f2b543a191b6 ("arm64: dts: mediatek: add device-tree for Genio 1200 EVK board") Signed-off-by: Arnd Bergmann --- arch/arm64/boot/dts/mediatek/mt8395-genio-1200-evk.dts | 2 -- 1 file changed, 2 deletions(-) diff --git a/arch/arm64/boot/dts/mediatek/mt8395-genio-1200-evk.dts b/arch/arm64/boot/dts/mediatek/mt8395-genio-1200-evk.dts index 70b465f7c6a7..a409ef998746 100644 --- a/arch/arm64/boot/dts/mediatek/mt8395-genio-1200-evk.dts +++ b/arch/arm64/boot/dts/mediatek/mt8395-genio-1200-evk.dts @@ -238,8 +238,6 @@ &i2c6 { mt6360: pmic@34 { compatible = "mediatek,mt6360"; reg = <0x34>; - interrupts = <128 IRQ_TYPE_EDGE_FALLING>; - interrupt-names = "IRQB"; interrupt-controller; #interrupt-cells = <1>; pinctrl-0 = <&mt6360_pins>;