sb/ti/pcixx12: Remove NOOP chip driver

Change-Id: I46bc854239e723a1685279f634e635b72e7b3af9
Signed-off-by: Arthur Heymans <arthur@aheymans.xyz>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/51135
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Nico Huber <nico.h@gmx.de>
This commit is contained in:
Arthur Heymans 2021-03-01 14:36:37 +01:00 committed by Patrick Georgi
parent 418190cbba
commit 54c04d5536
2 changed files with 1 additions and 14 deletions

View File

@ -64,11 +64,7 @@ chip northbridge/intel/i945
device pci 1d.2 on end # USB UHCI
device pci 1d.3 on end # USB UHCI
device pci 1d.7 on end # USB2 EHCI
device pci 1e.0 on
chip southbridge/ti/pcixx12
end
end # PCI bridge
device pci 1e.0 on end # PCI bridge
device pci 1e.2 off end # AC'97 Audio
device pci 1e.3 off end # AC'97 Modem
device pci 1f.0 on # LPC bridge

View File

@ -38,12 +38,3 @@ static const struct pci_driver ti_pcixx12_driver __pci_driver = {
.vendor = 0x104c,
.device = 0x8039,
};
static void southbridge_init(struct device *dev)
{
}
struct chip_operations southbridge_ti_pcixx12_ops = {
CHIP_NAME("Texas Instruments PCIxx12 Cardbus Controller")
.enable_dev = southbridge_init,
};