Author: stepan Date: 2009-07-18 19:58:44 +0200 (Sat, 18 Jul 2009) New Revision: 4439
Modified: trunk/coreboot-v2/src/devices/device.c Log: drop unused variable (trivial)
Signed-off-by: Stefan Reinauer stepan@coresystems.de Acked-by: Stefan Reinauer stepan@coresystems.de
Modified: trunk/coreboot-v2/src/devices/device.c =================================================================== --- trunk/coreboot-v2/src/devices/device.c 2009-07-18 15:18:22 UTC (rev 4438) +++ trunk/coreboot-v2/src/devices/device.c 2009-07-18 17:58:44 UTC (rev 4439) @@ -881,7 +881,6 @@ void dev_enumerate(void) { struct device *root; - unsigned subordinate; printk_info("Enumerating buses...\n"); root = &dev_root;
@@ -897,7 +896,7 @@ printk_err("dev_root missing scan_bus operation"); return; } - subordinate = scan_bus(root, 0); + scan_bus(root, 0); printk_info("done\n"); }