summaryrefslogtreecommitdiff
path: root/util
diff options
context:
space:
mode:
authorNico Huber <nico.h@gmx.de>2020-05-26 22:13:09 +0200
committerPatrick Georgi <pgeorgi@google.com>2020-06-02 07:20:12 +0000
commitd09459fe30bb9876ca72ba5a34024cfbb2f98e79 (patch)
treedce5efd01d169b8bddeff8d95696047b43e7b208 /util
parent9b110bf97ae1da0eb60e76df6957fae044d71554 (diff)
downloadcoreboot-d09459fe30bb9876ca72ba5a34024cfbb2f98e79.tar.xz
util/sconfig: Refactor and fix add_register()
add_register() contained a duplicate check but only compared the new key to the first (smallest in order) list member. Fix that and factor the list handling out so it can be used by other functions. Change-Id: I5a8346f36fa024351e1282c9681868ecf451b283 Signed-off-by: Nico Huber <nico.h@gmx.de> Reviewed-on: https://review.coreboot.org/c/coreboot/+/41743 Reviewed-by: Angel Pons <th3fanbus@gmail.com> Reviewed-by: Aaron Durbin <adurbin@chromium.org> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'util')
-rw-r--r--util/sconfig/main.c37
1 files changed, 19 insertions, 18 deletions
diff --git a/util/sconfig/main.c b/util/sconfig/main.c
index 6676baea90..3e3bd17098 100644
--- a/util/sconfig/main.c
+++ b/util/sconfig/main.c
@@ -528,33 +528,34 @@ void add_resource(struct bus *bus, int type, int index, int base)
new_resource(bus->dev, type, index, base);
}
-void add_register(struct chip_instance *chip_instance, char *name, char *val)
+static void add_reg(struct reg **const head, char *const name, char *const val)
{
- struct reg *r = S_ALLOC(sizeof(struct reg));
+ struct reg *const r = S_ALLOC(sizeof(struct reg));
+ struct reg *prev = NULL;
+ struct reg *cur;
r->key = name;
r->value = val;
- if (chip_instance->reg) {
- struct reg *head = chip_instance->reg;
- // sorting to be equal to sconfig's behaviour
- int sort = strcmp(r->key, head->key);
+
+ for (cur = *head; cur != NULL; prev = cur, cur = cur->next) {
+ const int sort = strcmp(r->key, cur->key);
if (sort == 0) {
printf("ERROR: duplicate 'register' key.\n");
exit(1);
}
- if (sort < 0) {
- r->next = head;
- chip_instance->reg = r;
- } else {
- while ((head->next)
- && (strcmp(head->next->key, r->key) < 0))
- head = head->next;
- r->next = head->next;
- head->next = r;
- }
- } else {
- chip_instance->reg = r;
+ if (sort < 0)
+ break;
}
+ r->next = cur;
+ if (prev)
+ prev->next = r;
+ else
+ *head = r;
+}
+
+void add_register(struct chip_instance *chip_instance, char *name, char *val)
+{
+ add_reg(&chip_instance->reg, name, val);
}
void add_slot_desc(struct bus *bus, char *type, char *length, char *designation,