From patchwork Tue Mar 15 19:11:13 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Vagrant Cascadian X-Patchwork-Id: 597823 X-Patchwork-Delegate: trini@ti.com Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from theia.denx.de (theia.denx.de [85.214.87.163]) by ozlabs.org (Postfix) with ESMTP id 3qPklb0zDRz9sDH for ; Wed, 16 Mar 2016 06:12:43 +1100 (AEDT) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 15B63A76B5; Tue, 15 Mar 2016 20:12:22 +0100 (CET) Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id qo_46I62qjIk; Tue, 15 Mar 2016 20:12:21 +0100 (CET) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 603C0A7689; Tue, 15 Mar 2016 20:12:21 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 8A132A767C for ; Tue, 15 Mar 2016 20:12:18 +0100 (CET) Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id V0HAhrMx5gU3 for ; Tue, 15 Mar 2016 20:12:18 +0100 (CET) X-policyd-weight: NOT_IN_SBL_XBL_SPAMHAUS=-1.5 NOT_IN_SPAMCOP=-1.5 NOT_IN_BL_NJABL=-1.5 (only DNSBL check requested) Received: from cascadia.aikidev.net (cascadia.aikidev.net [173.255.214.101]) by theia.denx.de (Postfix) with ESMTP id E3FC2A7689 for ; Tue, 15 Mar 2016 20:12:06 +0100 (CET) Received: from localhost (unknown [IPv6:2600:3c01:e000:21:21:21:1:7]) (Authenticated sender: vagrant@aikidev.net) by cascadia.aikidev.net (Postfix) with ESMTPSA id 0128C1ADBE; Tue, 15 Mar 2016 12:12:05 -0700 (PDT) From: Vagrant Cascadian To: u-boot@lists.denx.de Date: Tue, 15 Mar 2016 12:11:13 -0700 Message-Id: <1458069073-27100-3-git-send-email-vagrant@debian.org> X-Mailer: git-send-email 2.1.4 In-Reply-To: <1458069073-27100-1-git-send-email-vagrant@debian.org> References: <1458069073-27100-1-git-send-email-vagrant@debian.org> Cc: Stephen Warren , Vagrant Cascadian , =?UTF-8?q?Beno=C3=AEt=20Th=C3=A9baudeau?= Subject: [U-Boot] [PATCH 2/2] Fix spelling of "supported/unsupported". X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.15 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" Signed-off-by: Vagrant Cascadian Reviewed-by: Simon Glass Reviewed-by: Tom Rini Reviewed-by: Peter Griffin --- board/hisilicon/hikey/hikey.c | 2 +- fs/fat/fat_write.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/board/hisilicon/hikey/hikey.c b/board/hisilicon/hikey/hikey.c index c4ae40b..cf9c77d 100644 --- a/board/hisilicon/hikey/hikey.c +++ b/board/hisilicon/hikey/hikey.c @@ -76,7 +76,7 @@ static const struct pl01x_serial_platdata serial_platdata = { #elif CONFIG_CONS_INDEX == 4 .base = HI6220_UART3_BASE, #else -#error "Unsuported console index value." +#error "Unsupported console index value." #endif .type = TYPE_PL011, .clock = 19200000 diff --git a/fs/fat/fat_write.c b/fs/fat/fat_write.c index baa85ec..eb3a916 100644 --- a/fs/fat/fat_write.c +++ b/fs/fat/fat_write.c @@ -1135,7 +1135,7 @@ int file_fat_write(const char *filename, void *buffer, loff_t offset, loff_t maxsize, loff_t *actwrite) { if (offset != 0) { - printf("Error: non zero offset is currently not suported.\n"); + printf("Error: non zero offset is currently not supported.\n"); return -1; }