AGESA: Drop commented code with bad PCI IDs
There is mismatch of VENDOR_ID_AMD with DEVICE_ID_ATI, also the device IDs have not been defined. Change-Id: I0d85893169fe877e384746931605f563c50308b2 Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: https://review.coreboot.org/17509 Tested-by: build bot (Jenkins) Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Reviewed-by: Edward O'Callaghan <edward.ocallaghan@koparo.com> Reviewed-by: Marshall Dawson <marshalldawson3rd@gmail.com>
This commit is contained in:
parent
d3af82ef44
commit
d61d07bdd9
|
@ -44,53 +44,15 @@ static const struct pci_driver usb_0_driver __pci_driver = {
|
|||
.vendor = PCI_VENDOR_ID_AMD,
|
||||
.device = PCI_DEVICE_ID_ATI_SB900_USB_18_0,
|
||||
};
|
||||
|
||||
static const struct pci_driver usb_1_driver __pci_driver = {
|
||||
.ops = &usb_ops,
|
||||
.vendor = PCI_VENDOR_ID_AMD,
|
||||
.device = PCI_DEVICE_ID_ATI_SB900_USB_18_2,
|
||||
};
|
||||
|
||||
/* the pci id of usb ctrl 0 and 1 are the same. */
|
||||
/*
|
||||
* static const struct pci_driver usb_3_driver __pci_driver = {
|
||||
* .ops = &usb_ops,
|
||||
* .vendor = PCI_VENDOR_ID_AMD,
|
||||
* .device = PCI_DEVICE_ID_ATI_HUDSON_USB_19_0,
|
||||
* };
|
||||
* static const struct pci_driver usb_4_driver __pci_driver = {
|
||||
* .ops = &usb_ops,
|
||||
* .vendor = PCI_VENDOR_ID_AMD,
|
||||
* .device = PCI_DEVICE_ID_ATI_HUDSON_USB_19_1,
|
||||
* };
|
||||
*/
|
||||
|
||||
static const struct pci_driver usb_4_driver __pci_driver = {
|
||||
.ops = &usb_ops,
|
||||
.vendor = PCI_VENDOR_ID_AMD,
|
||||
.device = PCI_DEVICE_ID_ATI_SB900_USB_20_5,
|
||||
};
|
||||
|
||||
/*
|
||||
static struct device_operations usb_ops2 = {
|
||||
.read_resources = pci_ehci_read_resources,
|
||||
.set_resources = pci_dev_set_resources,
|
||||
.enable_resources = pci_dev_enable_resources,
|
||||
.init = usb_init2,
|
||||
.scan_bus = 0,
|
||||
.ops_pci = &lops_pci,
|
||||
};
|
||||
*/
|
||||
/*
|
||||
static const struct pci_driver usb_5_driver __pci_driver = {
|
||||
.ops = &usb_ops2,
|
||||
.vendor = PCI_VENDOR_ID_AMD,
|
||||
.device = PCI_DEVICE_ID_ATI_HUDSON_USB_18_2,
|
||||
};
|
||||
*/
|
||||
/*
|
||||
* static const struct pci_driver usb_5_driver __pci_driver = {
|
||||
* .ops = &usb_ops2,
|
||||
* .vendor = PCI_VENDOR_ID_AMD,
|
||||
* .device = PCI_DEVICE_ID_ATI_HUDSON_USB_19_2,
|
||||
* };
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue