add one call to amd8111 lpc ?
static struct device_operations lpc_ops = { .read_resources = amd8111_lpc_read_resources, .set_resources = pci_dev_set_resources, .enable_resources = pci_dev_enable_resources, .init = lpc_init, .scan_bus = scan_static_bus, .enable = amd8111_enable, .ops_pci = &lops_pci, };
---->
static void amd8111_lpc_enable_resources(device_t dev) { pci_dev_enable_resources(dev); enable_childrens_resources(dev); }
static struct device_operations lpc_ops = { .read_resources = amd8111_lpc_read_resources, .set_resources = pci_dev_set_resources, .enable_resources = amd8111_lpc_enable_resources, .init = lpc_init, .scan_bus = scan_static_bus, .enable = amd8111_enable, .ops_pci = &lops_pci, };
YhLu YhLu@tyan.com writes:
add one call to amd8111 lpc ?
Exactly. And committed for the amd8111 and the i82801??? chips.
The rest of the southbridges did not appear to an lpc or an isa bus that I could identify code wise so it appears they have more that needs to be done to get them into shape.
Eric