From patchwork Fri Dec 4 12:59:14 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Fabio Estevam X-Patchwork-Id: 7767781 Return-Path: X-Original-To: patchwork-linux-spi@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork1.web.kernel.org (Postfix) with ESMTP id 219269F54E for ; Fri, 4 Dec 2015 12:59:27 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 5AF8A20592 for ; Fri, 4 Dec 2015 12:59:26 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 8636320595 for ; Fri, 4 Dec 2015 12:59:25 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751860AbbLDM7Z (ORCPT ); Fri, 4 Dec 2015 07:59:25 -0500 Received: from mail-yk0-f174.google.com ([209.85.160.174]:36142 "EHLO mail-yk0-f174.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752185AbbLDM7Y (ORCPT ); Fri, 4 Dec 2015 07:59:24 -0500 Received: by ykdr82 with SMTP id r82so122268893ykd.3 for ; Fri, 04 Dec 2015 04:59:24 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id; bh=/Hsd2CS6UHp2O8w9a7aDyaMTxkkxaoJo7RsM7ByKy0Q=; b=SxXtM4Rk0lQ3afAkVIpFbL4blSQ4VQoxus1fJAI5T4rTc1jzixfgKeQj5xtMZXjlzj 8d3rezWDTtWkJsm+Lr2B2m7xPMhjbCm4o+HCwrim9ubCh6rvzzpnDMX73EGk2ZyjmIsp UD8nXMbi/QJHJbURYjzPqs1OgQNC/MKa9w4GbpvwsDMLjyax56rXoUTaPDMAGFcLX9S4 7Fn3UseUHMWiBqEYfTcCvFmKnfH0rTKYQsZ0Fr4TTUGYc0fgnnw0cR/4bGQb7nPu+Aiy VNX7wfcoek80AdicEaWB1PdPbviRL2vM1cvbUcye0B//U4qsendU662tsVzaIGenDz7q m86A== X-Received: by 10.13.218.68 with SMTP id c65mr11228370ywe.315.1449233963993; Fri, 04 Dec 2015 04:59:23 -0800 (PST) Received: from localhost.localdomain ([179.159.5.130]) by smtp.gmail.com with ESMTPSA id g128sm8886234ywf.13.2015.12.04.04.59.22 (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Fri, 04 Dec 2015 04:59:23 -0800 (PST) From: Fabio Estevam To: broonie@kernel.org Cc: stillcompiling@gmail.com, linux-spi@vger.kernel.org, Fabio Estevam Subject: [PATCH] spi: spidev_test: Fix typo in error message Date: Fri, 4 Dec 2015 10:59:14 -0200 Message-Id: <1449233954-12273-1-git-send-email-festevam@gmail.com> X-Mailer: git-send-email 1.9.1 Sender: linux-spi-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-spi@vger.kernel.org X-Spam-Status: No, score=-6.8 required=5.0 tests=BAYES_00, DKIM_ADSP_CUSTOM_MED, DKIM_SIGNED, FREEMAIL_FROM, RCVD_IN_DNSWL_HI, T_DKIM_INVALID, T_RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=ham version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP From: Fabio Estevam Fix the spelling of 'output' in the error message. Signed-off-by: Fabio Estevam --- tools/spi/spidev_test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/spi/spidev_test.c b/tools/spi/spidev_test.c index eddfc33..8a73d81 100644 --- a/tools/spi/spidev_test.c +++ b/tools/spi/spidev_test.c @@ -150,7 +150,7 @@ static void transfer(int fd, uint8_t const *tx, uint8_t const *rx, size_t len) ret = write(out_fd, rx, len); if (ret != len) - pabort("not all bytes written to utput file"); + pabort("not all bytes written to output file"); close(out_fd); }