]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
spi: spidev_test: Fix typo in error message
authorFabio Estevam <fabio.estevam@freescale.com>
Fri, 4 Dec 2015 12:59:14 +0000 (10:59 -0200)
committerMark Brown <broonie@kernel.org>
Tue, 8 Dec 2015 17:58:56 +0000 (17:58 +0000)
Fix the spelling of 'output' in the error message.

Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
tools/spi/spidev_test.c

index eddfc336a960f4d457df6e48f27cead0b77194d9..8a73d818531680ca6b6fe6d1911751870e7e1d00 100644 (file)
@@ -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);
        }