浏览代码

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: Michal Vokáč <vokac.m@gmail.com>
Reviewed-by: Joshua Clayton <stillcompiling@gmail.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
Michal Vokáč 8 年之前
父节点
当前提交
e634b76caf
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      tools/spi/spidev_test.c

+ 1 - 1
tools/spi/spidev_test.c

@@ -315,7 +315,7 @@ static void transfer_file(int fd, char *filename)
 		pabort("can't stat input file");
 		pabort("can't stat input file");
 
 
 	tx_fd = open(filename, O_RDONLY);
 	tx_fd = open(filename, O_RDONLY);
-	if (fd < 0)
+	if (tx_fd < 0)
 		pabort("can't open input file");
 		pabort("can't open input file");
 
 
 	tx = malloc(sb.st_size);
 	tx = malloc(sb.st_size);