From 5ad79cdf2f702eff547816b82ebf26f16d1abe54 Mon Sep 17 00:00:00 2001 From: Furquan Shaikh Date: Sun, 3 Jun 2018 10:40:58 -0700 Subject: [PATCH] util/sconfig: Get rid of unused parameter to walk_device_tree This change gets rid of unused 3rd parameter chips to the function walk_device_tree. BUG=b:80081934 TEST=Verified that abuild compiles successfully for all boards. Change-Id: I255ff030562073b16310fc22a0981808bf2c062f Signed-off-by: Furquan Shaikh Reviewed-on: https://review.coreboot.org/26801 Tested-by: build bot (Jenkins) Reviewed-by: Aaron Durbin --- util/sconfig/main.c | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/util/sconfig/main.c b/util/sconfig/main.c index 8059a8754e..7c838bfc8b 100644 --- a/util/sconfig/main.c +++ b/util/sconfig/main.c @@ -621,8 +621,7 @@ static void pass1(FILE *fil, struct device *ptr) } static void walk_device_tree(FILE *fil, struct device *ptr, - void (*func)(FILE *, struct device *), - struct device *chips) + void (*func)(FILE *, struct device *)) { do { func(fil, ptr); @@ -760,13 +759,13 @@ int main(int argc, char **argv) emit_chips(autogen); - walk_device_tree(autogen, &root, inherit_subsystem_ids, NULL); + walk_device_tree(autogen, &root, inherit_subsystem_ids); fprintf(autogen, "\n/* pass 0 */\n"); - walk_device_tree(autogen, &root, pass0, NULL); + walk_device_tree(autogen, &root, pass0); fprintf(autogen, "\n/* pass 1 */\n" "DEVTREE_CONST struct device * DEVTREE_CONST last_dev = &%s;\n", lastnode->name); - walk_device_tree(autogen, &root, pass1, NULL); + walk_device_tree(autogen, &root, pass1); fclose(autogen);