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 <furquan@google.com>
Reviewed-on: https://review.coreboot.org/26801
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
This commit is contained in:
Furquan Shaikh 2018-06-03 10:40:58 -07:00 committed by Martin Roth
parent f2dd0499b6
commit 5ad79cdf2f
1 changed files with 4 additions and 5 deletions

View File

@ -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);