diff options
author | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2012-03-18 20:19:28 +0200 |
---|---|---|
committer | Stefan Reinauer <stefan.reinauer@coreboot.org> | 2012-11-17 02:12:32 +0100 |
commit | 1a2a6eebc5668df21f054b2dae14167bda400617 (patch) | |
tree | bb53d8af7c76d9f1f47a0d811688a55d663bfaf2 /util/sconfig | |
parent | e4d40b4d6ea52dfb9bb2fc96a91714f4009b8dee (diff) |
Cleanup sconfig
Fix side-effects of name translation, treat original name as const.
Change-Id: Iae26be8cefe7db11eeb8e62fce6f3b8bc9c1f4ed
Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Reviewed-on: http://review.coreboot.org/799
Tested-by: build bot (Jenkins)
Reviewed-by: Patrick Georgi <patrick@georgi-clan.de>
Diffstat (limited to 'util/sconfig')
-rw-r--r-- | util/sconfig/main.c | 44 |
1 files changed, 32 insertions, 12 deletions
diff --git a/util/sconfig/main.c b/util/sconfig/main.c index 91d85fed87..43b083e92b 100644 --- a/util/sconfig/main.c +++ b/util/sconfig/main.c @@ -38,6 +38,13 @@ typedef enum { static scan_t scan_mode = STATIC_MODE; +typedef enum { + UNSLASH, + SPLIT_1ST, + TO_LOWER, + TO_UPPER, +} translate_t; + static struct device root; static struct device mainboard = { .name = "mainboard", @@ -129,23 +136,31 @@ void postprocess_devtree(void) { } } -void translate_name(char *str, int uppercase) +char * translate_name(const char *str, translate_t mode) { - char *c; - for (c = str; *c; c++) { + char *b, *c; + b = c = strdup(str); + while (c && *c) { + if ((mode == SPLIT_1ST) && (*c == '/')) { + *c = 0; + break; + } if (*c == '/') *c = '_'; if (*c == '-') *c = '_'; - if (uppercase) + if (mode == TO_UPPER) *c = toupper(*c); + if (mode == TO_LOWER) + *c = tolower(*c); + c++; } + return b; } struct device *new_chip(struct device *parent, struct device *bus, char *path) { struct device *new_chip = new_dev(parent, bus); new_chip->chiph_exists = 1; new_chip->name = path; - new_chip->name_underscore = strdup(new_chip->name); - translate_name(new_chip->name_underscore, 0); + new_chip->name_underscore = translate_name(new_chip->name, UNSLASH); new_chip->type = chip; new_chip->chip = new_chip; @@ -625,8 +640,7 @@ int main(int argc, char** argv) { h = &headers; while (h->next) { h = h->next; - char *name_underscore = strdup(h->name); - translate_name(name_underscore, 0); + char *name_underscore = translate_name(h->name, UNSLASH); fprintf(autogen, "extern struct chip_operations %s_ops;\n", name_underscore); free(name_underscore); } @@ -659,8 +673,11 @@ int main(int argc, char** argv) { h = &headers; while (h->next) { h = h->next; - translate_name(h->name, 0); - fprintf(autogen, "\tinit_%s();\n", h->name); + char * buf = translate_name(h->name, UNSLASH); + if (buf) { + fprintf(autogen, "\tinit_%s();\n", buf); + free(buf); + } } fprintf(autogen, "\treturn 0;\n}\n"); @@ -674,8 +691,11 @@ int main(int argc, char** argv) { h = &headers; while (h->next) { h = h->next; - translate_name(h->name, 1); - fprintf(autogen, "\tselect %s\n", h->name); + char * buf = translate_name(h->name, TO_UPPER); + if (buf) { + fprintf(autogen, "\tselect %s\n", buf); + free(buf); + } } } |