summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAngel Pons <th3fanbus@gmail.com>2020-05-27 12:15:51 +0200
committerFelix Singer <felixsinger@posteo.net>2022-09-29 17:04:40 +0000
commitb428c319ed629bef50e7e154c472635f68ea8edc (patch)
treef0ef56e854f7f1a7e37a722ef5404724e03ab3e0
parent5ac6a637b07ea05a363ede3643ff627913378a2a (diff)
downloadflashrom-b428c319ed629bef50e7e154c472635f68ea8edc.tar.gz
flashrom-b428c319ed629bef50e7e154c472635f68ea8edc.tar.bz2
flashrom-b428c319ed629bef50e7e154c472635f68ea8edc.zip
libflashrom.c: Use casts on enum conversions
This allows flashrom to build with GCC 10. Change-Id: I2166cdf3681452631ef8e980face2924e9a6c81a Signed-off-by: Angel Pons <th3fanbus@gmail.com> Reviewed-on: https://review.coreboot.org/c/flashrom/+/41775 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: HAOUAS Elyes <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/c/flashrom/+/67861 Reviewed-by: Felix Singer <felixsinger@posteo.net> Reviewed-by: Elyes Haouas <ehaouas@noos.fr>
-rw-r--r--libflashrom.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/libflashrom.c b/libflashrom.c
index 0dec22ee5..51ad7d9cb 100644
--- a/libflashrom.c
+++ b/libflashrom.c
@@ -188,7 +188,8 @@ struct flashrom_board_info *flashrom_supported_boards(void)
for (; i < boards_known_size; ++i) {
supported_boards[i].vendor = binfo[i].vendor;
supported_boards[i].name = binfo[i].name;
- supported_boards[i].working = binfo[i].working;
+ supported_boards[i].working =
+ (enum flashrom_test_state) binfo[i].working;
}
} else {
msg_gerr("Memory allocation error!\n");
@@ -226,7 +227,8 @@ struct flashrom_chipset_info *flashrom_supported_chipsets(void)
supported_chipsets[i].chipset = chipset[i].device_name;
supported_chipsets[i].vendor_id = chipset[i].vendor_id;
supported_chipsets[i].chipset_id = chipset[i].device_id;
- supported_chipsets[i].status = chipset[i].status;
+ supported_chipsets[i].status =
+ (enum flashrom_test_state) chipset[i].status;
}
} else {
msg_gerr("Memory allocation error!\n");