tools: PCI: Fix broken pcitest compilation
authorAlan Mikhak <alan.mikhak@sifive.com>
Thu, 23 May 2019 21:18:00 +0000 (14:18 -0700)
committerLorenzo Pieralisi <lorenzo.pieralisi@arm.com>
Wed, 29 May 2019 16:44:09 +0000 (17:44 +0100)
commit8a5e0af240e07dd3d4897eb8ff52aab757da7fab
tree60d9fa1676ece7d9ef12f7556e8e01bebad9b1aa
parenta188339ca5a396acc588e5851ed7e19f66b0ebd9
tools: PCI: Fix broken pcitest compilation

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: Alan Mikhak <alan.mikhak@sifive.com>
Signed-off-by: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
Reviewed-by: Paul Walmsley <paul.walmsley@sifive.com>
tools/pci/pcitest.c