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 443D312CD90; Tue, 30 Apr 2024 11:08:11 +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=1714475291; cv=none; b=icEabwO/MNyJBoEqJYk+4Crl/LdADW+8dYmxKrEtqv3+x5iZVnABTbiOyP/IRzVb4g8Kqy9u+PmLcGxLV5A7bTcq9Zx3EM95n9ZjfMc4l3wxqbteGKmVdks23hu4BeTAWvDpIjF/4Mic0eukYFXrZQtG+7Xr8iCOfpK91ggFs2c= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1714475291; c=relaxed/simple; bh=sbAgJdxQD90A9R+EYFt24Wq6oL2b9C8YyomkU/z9a3w=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=GP9ENQXbgOxI3sLq+NFueBd2elZayYJxF9wOla81CdZIWoPs6P2ZDlMn7WpBd1AjMsErrj5U5l3qbYvsCIIB7BWeV6fwh+KT19YDo92qeE0ZaUV1BniS48GbGv+VLbQpYvMZyXFPOgQOKdRQhHiK2xDa0rhmIMuEEU2gUpfIgWQ= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=MVtm3py5; 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="MVtm3py5" Received: by smtp.kernel.org (Postfix) with ESMTPSA id AA64DC2BBFC; Tue, 30 Apr 2024 11:08:10 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1714475291; bh=sbAgJdxQD90A9R+EYFt24Wq6oL2b9C8YyomkU/z9a3w=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=MVtm3py5dYTbukGjWmRxgn9uX2yZntePyg/xqpunQqiTlht3zyUQWF2fHWq207v6M Fyt6lvNpzjdaFWrJOeIhrz7JmV1YAjiZeWx/a3rPtOBrGZpE6O/H1x8MzpB+4ev4ne ms9HgkLM8JS4s6Y5YLiPLJY7UXqsgTgYHpeG6eNo= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Vineet Gupta , Alexey Brodkin , Sasha Levin Subject: [PATCH 6.6 035/186] ARC: [plat-hsdk]: Remove misplaced interrupt-cells property Date: Tue, 30 Apr 2024 12:38:07 +0200 Message-ID: <20240430103059.050221568@linuxfoundation.org> X-Mailer: git-send-email 2.44.0 In-Reply-To: <20240430103058.010791820@linuxfoundation.org> References: <20240430103058.010791820@linuxfoundation.org> User-Agent: quilt/0.67 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: patches@lists.linux.dev 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: Alexey Brodkin [ Upstream commit 61231eb8113ce47991f35024f9c20810b37996bf ] "gmac" node stands for just an ordinary Ethernet controller, which is by no means a provider of interrupts, i.e. it doesn't serve as an interrupt controller, thus "#interrupt-cells" property doesn't belong to it and so we remove it. Fixes: ------------>8------------ DTC arch/arc/boot/dts/hsdk.dtb arch/arc/boot/dts/hsdk.dts:207.23-235.5: Warning (interrupt_provider): /soc/ethernet@8000: '#interrupt-cells' found, but node is not an interrupt provider arch/arc/boot/dts/hsdk.dtb: Warning (interrupt_map): Failed prerequisite 'interrupt_provider' ------------>8------------ Reported-by: Vineet Gupta Signed-off-by: Alexey Brodkin Signed-off-by: Vineet Gupta Signed-off-by: Sasha Levin --- arch/arc/boot/dts/hsdk.dts | 1 - 1 file changed, 1 deletion(-) diff --git a/arch/arc/boot/dts/hsdk.dts b/arch/arc/boot/dts/hsdk.dts index 6691f42550778..41b980df862b1 100644 --- a/arch/arc/boot/dts/hsdk.dts +++ b/arch/arc/boot/dts/hsdk.dts @@ -205,7 +205,6 @@ }; gmac: ethernet@8000 { - #interrupt-cells = <1>; compatible = "snps,dwmac"; reg = <0x8000 0x2000>; interrupts = <10>; -- 2.43.0