提交 e634b76c 编写于 作者: M Michal Vokáč 提交者: Mark Brown

spi: spidev_test: Fix input file check when transferring file

Check the input file fd instead of spidev fd.
The spidev fd is supposed to be OK otherwise the transfer_file() function
would not be called at all.
Signed-off-by: NMichal Vokáč <vokac.m@gmail.com>
Reviewed-by: NJoshua Clayton <stillcompiling@gmail.com>
Signed-off-by: NMark Brown <broonie@kernel.org>
上级 1001354c
......@@ -315,7 +315,7 @@ static void transfer_file(int fd, char *filename)
pabort("can't stat input file");
tx_fd = open(filename, O_RDONLY);
if (fd < 0)
if (tx_fd < 0)
pabort("can't open input file");
tx = malloc(sb.st_size);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册