From mboxrd@z Thu Jan 1 00:00:00 1970 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 phobos.denx.de (phobos.denx.de [85.214.62.61]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 64DA4C433EF for ; Tue, 21 Dec 2021 21:07:24 +0000 (UTC) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id 0ED7C82FAF; Tue, 21 Dec 2021 22:07:21 +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 3C33E82F87; Tue, 21 Dec 2021 22:07:19 +0100 (CET) Received: from cascadia.aikidev.net (cascadia.aikidev.net [IPv6:2600:3c01:e000:267:0:a171:de7:c]) by phobos.denx.de (Postfix) with ESMTP id 0B29B80FD2 for ; Tue, 21 Dec 2021 22:07:15 +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 19EAF1A982; Tue, 21 Dec 2021 13:07:14 -0800 (PST) From: Vagrant Cascadian To: u-boot@lists.denx.de Cc: Vagrant Cascadian Subject: [PATCH 01/11] arch/arm/mach-bcm283x/msg.c: Fix spelling of "Failed". Date: Tue, 21 Dec 2021 13:06:52 -0800 Message-Id: <20211221210702.11123-1-vagrant@debian.org> X-Mailer: git-send-email 2.30.2 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 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 --- arch/arm/mach-bcm283x/msg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm/mach-bcm283x/msg.c b/arch/arm/mach-bcm283x/msg.c index 01a8ed2a7b..fe243e2dca 100644 --- a/arch/arm/mach-bcm283x/msg.c +++ b/arch/arm/mach-bcm283x/msg.c @@ -194,7 +194,7 @@ int bcm2711_notify_vl805_reset(void) ret = bcm2835_mbox_call_prop(BCM2835_MBOX_PROP_CHAN, &msg_notify_vl805_reset->hdr); if (ret) { - printf("bcm2711: Faild to load vl805's firmware, %d\n", ret); + printf("bcm2711: Failed to load vl805's firmware, %d\n", ret); return -EIO; } -- 2.30.2