Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit edd3899c authored by Fabio Estevam's avatar Fabio Estevam Committed by Mark Brown
Browse files

spi: spidev_test: Fix typo in error message



Fix the spelling of 'output' in the error message.

Signed-off-by: default avatarFabio Estevam <fabio.estevam@freescale.com>
Signed-off-by: default avatarMark Brown <broonie@kernel.org>
parent f15c5841
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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);
	}