提交 ff36ace6 编写于 作者: A Alan Mikhak 提交者: Greg Kroah-Hartman

tools: PCI: Fix broken pcitest compilation

[ Upstream commit 8a5e0af240e07dd3d4897eb8ff52aab757da7fab ]

pcitest is currently broken due to the following compiler error
and related warning. Fix by changing the run_test() function
signature to return an integer result.

pcitest.c: In function run_test:
pcitest.c:143:9: warning: return with a value, in function
returning void
  return (ret < 0) ? ret : 1 - ret; /* return 0 if test succeeded */

pcitest.c: In function main:
pcitest.c:232:9: error: void value not ignored as it ought to be
  return run_test(test);

Fixes: fef31ecaaf2c ("tools: PCI: Fix compilation warnings")
Signed-off-by: NAlan Mikhak <alan.mikhak@sifive.com>
Signed-off-by: NLorenzo Pieralisi <lorenzo.pieralisi@arm.com>
Reviewed-by: NPaul Walmsley <paul.walmsley@sifive.com>
Signed-off-by: NSasha Levin <sashal@kernel.org>
上级 4039b5dd
...@@ -47,15 +47,15 @@ struct pci_test { ...@@ -47,15 +47,15 @@ struct pci_test {
unsigned long size; unsigned long size;
}; };
static void run_test(struct pci_test *test) static int run_test(struct pci_test *test)
{ {
long ret; int ret = -EINVAL;
int fd; int fd;
fd = open(test->device, O_RDWR); fd = open(test->device, O_RDWR);
if (fd < 0) { if (fd < 0) {
perror("can't open PCI Endpoint Test device"); perror("can't open PCI Endpoint Test device");
return; return -ENODEV;
} }
if (test->barnum >= 0 && test->barnum <= 5) { if (test->barnum >= 0 && test->barnum <= 5) {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册