diff options
author | Arthur Heymans <arthur@aheymans.xyz> | 2022-11-07 17:20:11 +0100 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2022-11-09 14:27:08 +0000 |
commit | e0fc3da747ef5396e948599d04627245565a68b1 (patch) | |
tree | a256cca08ea85f47a076dbeb6557d084b2f5606b /src | |
parent | 2a86ef5bb8565c110a66426273e11cfe3dc24087 (diff) |
mb/intel/harcuvar: Fix strict prototype warning
Clang warns on both the declaration and the definction.
Change-Id: I94d979fcdbe41349c59248656066615bffd215b6
Signed-off-by: Arthur Heymans <arthur@aheymans.xyz>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/69308
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
Diffstat (limited to 'src')
-rw-r--r-- | src/mainboard/intel/harcuvar/spd/spd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainboard/intel/harcuvar/spd/spd.c b/src/mainboard/intel/harcuvar/spd/spd.c index a66c10b032..e3912ec91e 100644 --- a/src/mainboard/intel/harcuvar/spd/spd.c +++ b/src/mainboard/intel/harcuvar/spd/spd.c @@ -6,7 +6,7 @@ #include "spd.h" /* Get SPD data for on-board memory */ -uint8_t *mainboard_find_spd_data() +uint8_t *mainboard_find_spd_data(void) { uint8_t *spd_data; int spd_index; |