diff options
author | Fabio Estevam <fabio.estevam@freescale.com> | 2015-12-04 10:59:14 -0200 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2015-12-08 17:58:56 +0000 |
commit | edd3899c8cd2a7f11d23686e375359f8ab1f818a (patch) | |
tree | 7712e67f43bf683655f3d05dd6eed2a2020b9a90 /tools/spi | |
parent | f15c58410ad90bd1208305771689877ffffe3a88 (diff) |
spi: spidev_test: Fix typo in error message
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>
Diffstat (limited to 'tools/spi')
-rw-r--r-- | tools/spi/spidev_test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/spi/spidev_test.c b/tools/spi/spidev_test.c index eddfc336a960..8a73d8185316 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); } |