From f0d0d918681c944f09a2363a1241c741aa3b25ff Mon Sep 17 00:00:00 2001 From: Stefan Reinauer Date: Tue, 9 Feb 2016 17:55:14 -0800 Subject: bimgtool: Match CRC code guards Make sure that the statically defined CRC functions are enabled by the same conditionals as the code using them. Change-Id: Ic24e2ed1a80b8e5f6623881b08d86f7b608a206e Signed-off-by: Stefan Reinauer Reviewed-on: https://review.coreboot.org/13654 Tested-by: build bot (Jenkins) Reviewed-by: Martin Roth --- util/bimgtool/bimgtool.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'util') diff --git a/util/bimgtool/bimgtool.c b/util/bimgtool/bimgtool.c index 4e8fb3feed..13ded54654 100644 --- a/util/bimgtool/bimgtool.c +++ b/util/bimgtool/bimgtool.c @@ -69,6 +69,7 @@ struct crc_t { return ret; \ } +#if defined(CRC_X25) static uint16_t crc_x25(uint16_t crc, void *void_buf, size_t size) { static const uint16_t crc_table[16] = { @@ -87,7 +88,9 @@ static uint16_t crc_x25(uint16_t crc, void *void_buf, size_t size) return crc; } +#endif +#if defined(CRC_16) static uint16_t crc_16(uint16_t crc, void *void_buf, size_t size) { /* @@ -136,8 +139,8 @@ static uint16_t crc_16(uint16_t crc, void *void_buf, size_t size) } return crc; - } +#endif static const struct crc_t crc_type = { #if defined(CRC_16) -- cgit v1.2.3