hc
2023-12-09 b22da3d8526a935aa31e086e63f60ff3246cb61c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
Upstream-Status: Backport
Signed-off-by: Ross Burton <ross.burton@arm.com>
 
From 3a0c1966e4c66f91e6e8551e906b6db38002acb4 Mon Sep 17 00:00:00 2001
From: Angel Pons <th3fanbus@gmail.com>
Date: Wed, 27 May 2020 12:15:51 +0200
Subject: [PATCH] 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>
---
 libflashrom.c | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)
 
diff --git a/libflashrom.c b/libflashrom.c
index ab7e364..c20d9c7 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");
-- 
2.25.1