summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLeah Rowe <leah@libreboot.org>2023-12-24 08:54:35 +0000
committerLeah Rowe <leah@libreboot.org>2023-12-24 08:54:35 +0000
commit575332f2219c9e6f435b7ed35bfb2a408de0628c (patch)
tree5ebe9dcab837df97dfb8ee3847e2d52c3f8328d7
parentb4ab30577ffd2c3b5908b8d599091982acce8f9c (diff)
fix flashrom build error (implicit enum typecast)
Signed-off-by: Leah Rowe <leah@libreboot.org>
-rw-r--r--config/flashrom/patches/0001-fix-implicit-typecast-fixes-build-error.patch38
1 files changed, 38 insertions, 0 deletions
diff --git a/config/flashrom/patches/0001-fix-implicit-typecast-fixes-build-error.patch b/config/flashrom/patches/0001-fix-implicit-typecast-fixes-build-error.patch
new file mode 100644
index 00000000..f8cf4be2
--- /dev/null
+++ b/config/flashrom/patches/0001-fix-implicit-typecast-fixes-build-error.patch
@@ -0,0 +1,38 @@
+From 2d3124cf3c6c2e2de351fcafc572b19565b1d2a5 Mon Sep 17 00:00:00 2001
+From: Leah Rowe <leah@libreboot.org>
+Date: Sun, 24 Dec 2023 08:52:55 +0000
+Subject: [PATCH 1/1] fix implicit typecast (fixes build error)
+
+typecasting an enum as (unsigned) should be safe
+
+Change-Id: Ib9d00d39020fef255eb4276bcc7d85c9973caed1
+Signed-off-by: Leah Rowe <leah@libreboot.org>
+---
+ libflashrom.c | 4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/libflashrom.c b/libflashrom.c
+index 0dec22ee..fb7d22a8 100644
+--- a/libflashrom.c
++++ b/libflashrom.c
+@@ -188,7 +188,7 @@ 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 = (unsigned) binfo[i].working;
+ }
+ } else {
+ msg_gerr("Memory allocation error!\n");
+@@ -226,7 +226,7 @@ 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 = (unsigned) chipset[i].status;
+ }
+ } else {
+ msg_gerr("Memory allocation error!\n");
+--
+2.39.2
+