From patchwork Tue Dec 21 21:06:58 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Vagrant Cascadian X-Patchwork-Id: 1571947 X-Patchwork-Delegate: trini@ti.com Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=lists.denx.de (client-ip=2a01:238:438b:c500:173d:9f52:ddab:ee01; helo=phobos.denx.de; envelope-from=u-boot-bounces@lists.denx.de; receiver=) Received: from phobos.denx.de (phobos.denx.de [IPv6:2a01:238:438b:c500:173d:9f52:ddab:ee01]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by bilbo.ozlabs.org (Postfix) with ESMTPS id 4JJTZn1CMgz9s1l for ; Wed, 22 Dec 2021 08:08:33 +1100 (AEDT) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id 8D2A183451; Tue, 21 Dec 2021 22:07:56 +0100 (CET) Authentication-Results: phobos.denx.de; dmarc=none (p=none dis=none) header.from=debian.org Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=u-boot-bounces@lists.denx.de Received: by phobos.denx.de (Postfix, from userid 109) id 4E55283081; Tue, 21 Dec 2021 22:07:39 +0100 (CET) X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on phobos.denx.de X-Spam-Level: X-Spam-Status: No, score=-1.6 required=5.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,SPF_HELO_NONE,SPF_PASS autolearn=no autolearn_force=no version=3.4.2 Received: from cascadia.aikidev.net (cascadia.aikidev.net [173.255.214.101]) by phobos.denx.de (Postfix) with ESMTP id ACDF18329E for ; Tue, 21 Dec 2021 22:07:31 +0100 (CET) Authentication-Results: phobos.denx.de; dmarc=none (p=none dis=none) header.from=debian.org Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=vagrant@aikidev.net Received: from localhost (unknown [IPv6:2600:3c01:e000:21:21:21:0:100e]) (Authenticated sender: vagrant@aikidev.net) by cascadia.aikidev.net (Postfix) with ESMTPSA id F34531ACB2; Tue, 21 Dec 2021 13:07:30 -0800 (PST) From: Vagrant Cascadian To: u-boot@lists.denx.de Cc: Vagrant Cascadian Subject: [PATCH 07/11] common/fdt_support.c: Fix spelling of "shouldn't". Date: Tue, 21 Dec 2021 13:06:58 -0800 Message-Id: <20211221210702.11123-7-vagrant@debian.org> X-Mailer: git-send-email 2.30.2 In-Reply-To: <20211221210702.11123-1-vagrant@debian.org> References: <20211221210702.11123-1-vagrant@debian.org> MIME-Version: 1.0 X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.38 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" X-Virus-Scanned: clamav-milter 0.103.2 at phobos.denx.de X-Virus-Status: Clean --- common/fdt_support.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/fdt_support.c b/common/fdt_support.c index 8992ac5d3f..a7dbe0efdf 100644 --- a/common/fdt_support.c +++ b/common/fdt_support.c @@ -1407,7 +1407,7 @@ int fdt_get_dma_range(const void *blob, int node, phys_addr_t *cpu, node = parent; parent = fdt_parent_offset(blob, node); if (parent < 0) { - printf("Found dma-ranges in root node, shoudln't happen\n"); + printf("Found dma-ranges in root node, shouldn't happen\n"); ret = -EINVAL; goto out; }