summaryrefslogtreecommitdiff
path: root/util
diff options
context:
space:
mode:
Diffstat (limited to 'util')
-rwxr-xr-xutil/sconfig/main.c4
-rwxr-xr-xutil/sconfig/sconfig.h1
2 files changed, 0 insertions, 5 deletions
diff --git a/util/sconfig/main.c b/util/sconfig/main.c
index be42381340..40a220aa44 100755
--- a/util/sconfig/main.c
+++ b/util/sconfig/main.c
@@ -223,8 +223,6 @@ void alias_siblings(struct device *d) {
if (device_match(d, cmp)) {
d->multidev = 1;
- cmp->aliased_name = malloc(12);
- sprintf(cmp->aliased_name, "_dev%d", cmp->id);
cmp->id = d->id;
cmp->name = d->name;
cmp->used = 1;
@@ -289,8 +287,6 @@ static void pass0(FILE *fil, struct device *ptr) {
if (ptr->children || ptr->multidev)
fprintf(fil, "struct bus %s_links[];\n", ptr->name);
}
- if ((ptr->type == device) && (ptr->id != 0) && ptr->used)
- fprintf(fil, "static struct device %s;\n", ptr->aliased_name);
}
static void pass1(FILE *fil, struct device *ptr) {
diff --git a/util/sconfig/sconfig.h b/util/sconfig/sconfig.h
index 139ac86ae9..8fbae6a48b 100755
--- a/util/sconfig/sconfig.h
+++ b/util/sconfig/sconfig.h
@@ -54,7 +54,6 @@ struct device {
int chiph_exists;
char *ops;
char *name;
- char *aliased_name;
char *name_underscore;
char *path;
int path_a;