v2 epia mainboard.c

ron minnich rminnich at lanl.gov
Mon Sep 29 11:23:00 CEST 2003


thought I should include this ...

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,
        .scan_bus         = pci_scan_bridge,
        .enable           = 0,
};

static void enumerate(struct chip *chip)
{
        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];
        }
}
struct chip_control mainboard_via_epia_control = {
        .enumerate = enumerate,
        .name      = "VIA EPIA mainboard ",
};






More information about the coreboot mailing list