- Bump the LinuxBIOS major version
[coreboot.git] / src / mainboard / via / epia / mainboard.c
index 5abb8fcec20cbae9467b5adf1f04e6f1bde24687..91a81b52e433a9cf90c4a0f6354fd1c64280c43e 100644 (file)
@@ -20,24 +20,19 @@ mainboard_scan_bus(device_t root, int maxbus)
 static struct device_operations mainboard_operations = {
        .read_resources   = root_dev_read_resources,
        .set_resources    = root_dev_set_resources,
-       .enable_resources = enable_childrens_resources,
-       .init             = 0,
+       .enable_resources = root_dev_enable_resources,
+       .init             = root_dev_init,
        .scan_bus         = mainboard_scan_bus,
        .enable           = 0,
 };
 
-static void enumerate(struct chip *chip)
+static void enable_dev(device_t dev)
 {
-       struct chip *child;
-       dev_root.ops = &mainboard_operations;
-       chip->dev = &dev_root;
-       chip->bus = 0;
-       for(child = chip->children; child; child = child->next) {
-               child->bus = &dev_root.link[0];
-       }
+       dev->ops = &mainboard_operations;
 }
-struct chip_control mainboard_via_epia_control = {
-       .enumerate = enumerate, 
-       .name      = "VIA EPIA mainboard ",
+
+struct chip_operations mainboard_via_epia_control = {
+       .enable_dev = enable_dev,
+       .name       = "VIA EPIA mainboard ",
 };