summaryrefslogtreecommitdiff
path: root/util/autoport
diff options
context:
space:
mode:
authorJacob Garber <jgarber1@ualberta.ca>2019-08-16 16:23:37 -0600
committerPatrick Georgi <pgeorgi@google.com>2019-08-20 15:31:54 +0000
commit1b7b7a36978c4294b00edc96ca7cd195f3f597a5 (patch)
tree39b9b98dba92982b454f18c8c53acde67029bcfa /util/autoport
parent293e6a96a9e19812f17bf6f925415e115612f607 (diff)
downloadcoreboot-1b7b7a36978c4294b00edc96ca7cd195f3f597a5.tar.xz
mb,autoport: Fix GCC 9 Port_List build error
Port_List is an array of 8 elements, and GCC 9 is warning that there are no 'others' when all 8 elements are explicitly initialized, which is causing the build to fail. Remove the 'others => Disabled' clause to silence this. Change-Id: Id082e7a76641438f3fb4c4d976dbd254a7053473 Signed-off-by: Jacob Garber <jgarber1@ualberta.ca> Reviewed-on: https://review.coreboot.org/c/coreboot/+/34918 Reviewed-by: HAOUAS Elyes <ehaouas@noos.fr> Reviewed-by: Patrick Georgi <pgeorgi@google.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'util/autoport')
-rw-r--r--util/autoport/main.go3
1 files changed, 1 insertions, 2 deletions
diff --git a/util/autoport/main.go b/util/autoport/main.go
index ab49a14a9d..03523a2c39 100644
--- a/util/autoport/main.go
+++ b/util/autoport/main.go
@@ -925,8 +925,7 @@ private package GMA.Mainboard is
HDMI2,
HDMI3,
Analog,
- Internal,
- others => Disabled);
+ Internal);
end GMA.Mainboard;
`)