[coreboot-gerrit] Change in coreboot[master]: util/bincfg: replenish missing definitions

Bill XIE (Code Review) gerrit at coreboot.org
Fri Oct 26 04:29:55 CEST 2018


Bill XIE has uploaded this change for review. ( https://review.coreboot.org/29281


Change subject: util/bincfg: replenish missing definitions
......................................................................

util/bincfg: replenish missing definitions

There are types 'field_t' and 'field_ptr_t' used in bincfg.h and/or
files including it, but these types are defined nowhere, which makes
build failed at least on my environments.

Adding their definitions to bincfg.h results in successful builds.

Change-Id: I14d47aff149e18f8f86e78dc4e9beb3bbaac3670
Signed-off-by: Bill XIE <persmule at gmail.com>
---
M util/bincfg/bincfg.h
1 file changed, 3 insertions(+), 0 deletions(-)



  git pull ssh://review.coreboot.org:29418/coreboot refs/changes/81/29281/1

diff --git a/util/bincfg/bincfg.h b/util/bincfg/bincfg.h
index c0e1242..2081f36 100644
--- a/util/bincfg/bincfg.h
+++ b/util/bincfg/bincfg.h
@@ -28,6 +28,9 @@
 	struct field *next;
 };
 
+typedef struct field *field_t;
+typedef struct field **field_ptr_t;
+
 /* Bit array intermediary representation */
 struct blob {
 	unsigned int bloblen;

-- 
To view, visit https://review.coreboot.org/29281
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings

Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-MessageType: newchange
Gerrit-Change-Id: I14d47aff149e18f8f86e78dc4e9beb3bbaac3670
Gerrit-Change-Number: 29281
Gerrit-PatchSet: 1
Gerrit-Owner: Bill XIE <persmule at gmail.com>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.coreboot.org/pipermail/coreboot-gerrit/attachments/20181026/99944a44/attachment-0001.html>


More information about the coreboot-gerrit mailing list