aboutsummaryrefslogtreecommitdiff
path: root/src/devices
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices')
-rw-r--r--src/devices/device.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/devices/device.c b/src/devices/device.c
index 64b3c106a0..8663a543ac 100644
--- a/src/devices/device.c
+++ b/src/devices/device.c
@@ -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");
}