drop unused variable (trivial)

Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>



git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4439 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
Stefan Reinauer 2009-07-18 17:58:44 +00:00 committed by Stefan Reinauer
parent f23804bda4
commit 6afcea8552
1 changed files with 1 additions and 2 deletions

View File

@ -881,7 +881,6 @@ unsigned int scan_bus(struct device *busdev, unsigned int max)
void dev_enumerate(void)
{
struct device *root;
unsigned subordinate;
printk_info("Enumerating buses...\n");
root = &dev_root;
@ -897,7 +896,7 @@ void dev_enumerate(void)
printk_err("dev_root missing scan_bus operation");
return;
}
subordinate = scan_bus(root, 0);
scan_bus(root, 0);
printk_info("done\n");
}