From patchwork Tue Nov 24 12:18:42 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jon Hunter X-Patchwork-Id: 1405511 Return-Path: X-Original-To: incoming-dt@patchwork.ozlabs.org Delivered-To: patchwork-incoming-dt@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=vger.kernel.org (client-ip=23.128.96.18; helo=vger.kernel.org; envelope-from=devicetree-owner@vger.kernel.org; receiver=) Authentication-Results: ozlabs.org; dmarc=pass (p=none dis=none) header.from=nvidia.com Authentication-Results: ozlabs.org; dkim=pass (2048-bit key; unprotected) header.d=nvidia.com header.i=@nvidia.com header.a=rsa-sha256 header.s=n1 header.b=f2Sjkdyz; dkim-atps=neutral Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by ozlabs.org (Postfix) with ESMTP id 4CgNNp4ddqz9sVW for ; Tue, 24 Nov 2020 23:19:06 +1100 (AEDT) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1733119AbgKXMTG (ORCPT ); Tue, 24 Nov 2020 07:19:06 -0500 Received: from hqnvemgate25.nvidia.com ([216.228.121.64]:5543 "EHLO hqnvemgate25.nvidia.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1729172AbgKXMTF (ORCPT ); Tue, 24 Nov 2020 07:19:05 -0500 Received: from hqmail.nvidia.com (Not Verified[216.228.121.13]) by hqnvemgate25.nvidia.com (using TLS: TLSv1.2, AES256-SHA) id ; Tue, 24 Nov 2020 04:19:05 -0800 Received: from HQMAIL101.nvidia.com (172.20.187.10) by HQMAIL109.nvidia.com (172.20.187.15) with Microsoft SMTP Server (TLS) id 15.0.1473.3; Tue, 24 Nov 2020 12:19:01 +0000 Received: from moonraker.nvidia.com (10.124.1.5) by mail.nvidia.com (172.20.187.10) with Microsoft SMTP Server id 15.0.1473.3 via Frontend Transport; Tue, 24 Nov 2020 12:19:00 +0000 From: Jon Hunter To: Thierry Reding CC: Rob Herring , , , Jon Hunter Subject: [PATCH] dt-bindings: Correct GV11B GPU register sizes Date: Tue, 24 Nov 2020 12:18:42 +0000 Message-ID: <20201124121842.1037035-1-jonathanh@nvidia.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 X-NVConfidentiality: public DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=nvidia.com; s=n1; t=1606220345; bh=0es/aNpBtueAk7MF62Z8gKogQAxyP9ER3IPb5yeGyeE=; h=From:To:CC:Subject:Date:Message-ID:X-Mailer:MIME-Version: X-NVConfidentiality:Content-Transfer-Encoding:Content-Type; b=f2Sjkdyz77IXprxPGWnt9BobXFk2bzY75hV8CZ6Srn26g2k+DRT42qEj4FOph9lI8 uTqYUm1Z8ESip3QrxYnoTlGhrVgyyn3DXPnf/3ABeO8fMNbod6aza2DsS0mcrAF+va twPkhFyrHfIdDN4ZdJ7MpmkaDrHTjXYqLaZ8+L4XOV8+IEVu8L/e1rqRQtuA2Ca+b6 oqPdy8g41kO1VavTKz7P4oFa6UWGwzbzX0HFa/SBS8EgTJDAuEG6IR47qm3fLaUogt jr3phQThY3sUqRBcoYOPxNSJkZWiytF+BdRUF8id3yg4AuK03l/E+ABed5asZ42wUK JYvNBCj22Yyxg== Precedence: bulk List-ID: X-Mailing-List: devicetree@vger.kernel.org Commit 90a09178f309 ("dt-bindings: Add documentation for GV11B GPU") added the GV11B GPU device-tree bindings information but incorrectly added an additional 0 to the size of the addresses in the example. Fixes: 90a09178f309 ("dt-bindings: Add documentation for GV11B GPU") Signed-off-by: Jon Hunter Acked-by: Thierry Reding --- Documentation/devicetree/bindings/gpu/nvidia,gk20a.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Documentation/devicetree/bindings/gpu/nvidia,gk20a.txt b/Documentation/devicetree/bindings/gpu/nvidia,gk20a.txt index 662a3c8a7d29..cc6ce5221a38 100644 --- a/Documentation/devicetree/bindings/gpu/nvidia,gk20a.txt +++ b/Documentation/devicetree/bindings/gpu/nvidia,gk20a.txt @@ -97,8 +97,8 @@ Example for GV11B: gpu@17000000 { compatible = "nvidia,gv11b"; - reg = <0x17000000 0x10000000>, - <0x18000000 0x10000000>; + reg = <0x17000000 0x1000000>, + <0x18000000 0x1000000>; interrupts = , ; interrupt-names = "stall", "nonstall";