From nobody Fri Dec 27 15:36:24 2024 Received: from TWMBX01.aspeed.com (mail.aspeedtech.com [211.20.114.72]) (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 ECB4322CBEB; Tue, 10 Dec 2024 07:24:19 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=211.20.114.72 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1733815463; cv=none; b=a+Zg5gYL+jY8zTPJygyKSCCG/HdmA85NzY9VZGAdBnuw9ZCk4tRBnCnFEKZQJWvAPW+0K1mEr27+yuvdrU8jN9LTUrd5NbDq7QQLIejbhBlApIJoiaMBjDweJkirDULVRIUHz5LVzr0kkkBWWt5QcVPauxXmS7ucjJeYWTTF168= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1733815463; c=relaxed/simple; bh=wjBJSdLomNChUivjQNlxq8BZURHOE8lEvmgIfbAU4ac=; h=From:To:Subject:Date:Message-ID:MIME-Version:Content-Type; b=o7rhyfuYU0KN5FFh7JfVZbb8fxJNtMiTjGrb0oRwF8KxOy2UeCHZC6mdoclsRlnMNCf4RYmh1fYZ4UkAVsTBYU992FfEGlS67Gf6IF6jwKibHS3wDIeOvV62IjCKur1Uk5nXCouOdsUKD9ct38mQd92VCRTcQqaj7Dw323WKqUo= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=pass (p=quarantine dis=none) header.from=aspeedtech.com; spf=pass smtp.mailfrom=aspeedtech.com; arc=none smtp.client-ip=211.20.114.72 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=quarantine dis=none) header.from=aspeedtech.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=aspeedtech.com Received: from TWMBX01.aspeed.com (192.168.0.62) by TWMBX01.aspeed.com (192.168.0.62) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id 15.2.1258.12; Tue, 10 Dec 2024 15:24:12 +0800 Received: from localhost.localdomain (192.168.10.10) by TWMBX01.aspeed.com (192.168.0.62) with Microsoft SMTP Server id 15.2.1258.12 via Frontend Transport; Tue, 10 Dec 2024 15:24:12 +0800 From: Kevin Chen To: , , , , , , , , , , Subject: [PATCH] dt-bindings: interrupt-controller: Fix the size-cells in ast2700-intc Date: Tue, 10 Dec 2024 15:24:09 +0800 Message-ID: <20241210072409.1429725-1-kevin_chen@aspeedtech.com> X-Mailer: git-send-email 2.25.1 Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" It is no need to let size-cells to 2 for the ASPEED AST27XX INTC. Modify the ast2700-intc example usage. Signed-off-by: Kevin Chen --- .../bindings/interrupt-controller/aspeed,ast2700-intc.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Documentation/devicetree/bindings/interrupt-controller/aspeed,= ast2700-intc.yaml b/Documentation/devicetree/bindings/interrupt-controller/= aspeed,ast2700-intc.yaml index 55636d06a674..69503aa638fb 100644 --- a/Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2700= -intc.yaml +++ b/Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2700= -intc.yaml @@ -69,11 +69,11 @@ examples: =20 bus { #address-cells =3D <2>; - #size-cells =3D <2>; + #size-cells =3D <1>; =20 interrupt-controller@12101b00 { compatible =3D "aspeed,ast2700-intc-ic"; - reg =3D <0 0x12101b00 0 0x10>; + reg =3D <0 0x12101b00 0x10>; #interrupt-cells =3D <2>; interrupt-controller; interrupts =3D , --=20 2.34.1