diff options
author | Elyes Haouas <ehaouas@noos.fr> | 2022-12-02 15:44:39 +0100 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2022-12-06 16:18:59 +0000 |
commit | 33e9e44a177e9121d51e51363b30509b75141bcc (patch) | |
tree | ffa825c2e9943c3ac4d960dd6e139ad3b2f6ec87 /src/vendorcode | |
parent | f38992e608fe972f687a0d80b3654209efbf3c1d (diff) |
vc/cavium/bdk/libbdk-arch/bdk-numa.c: Fix old-style function definition
Change-Id: Ia56f813933143ef69c97f1b7643693c6eade6abe
Signed-off-by: Elyes Haouas <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/70256
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Matt DeVillier <matt.devillier@gmail.com>
Diffstat (limited to 'src/vendorcode')
-rw-r--r-- | src/vendorcode/cavium/bdk/libbdk-arch/bdk-numa.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vendorcode/cavium/bdk/libbdk-arch/bdk-numa.c b/src/vendorcode/cavium/bdk/libbdk-arch/bdk-numa.c index ede3b10170..fb0af80112 100644 --- a/src/vendorcode/cavium/bdk/libbdk-arch/bdk-numa.c +++ b/src/vendorcode/cavium/bdk/libbdk-arch/bdk-numa.c @@ -89,7 +89,7 @@ int bdk_numa_exists(bdk_node_t node) * * @return */ -extern int bdk_numa_is_only_one() +extern int bdk_numa_is_only_one(void) { /* FIXME(dhendrix): stub */ return 1; |