From eefdb038981a0fcc93df5c6c934f8138a43873bb Mon Sep 17 00:00:00 2001 From: Yinghai Lu Date: Wed, 27 Oct 2004 00:37:30 +0000 Subject: S2885 winbond Superio all resource set git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1717 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1 --- src/southbridge/amd/amd8111/amd8111_usb.c | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) (limited to 'src/southbridge/amd/amd8111') diff --git a/src/southbridge/amd/amd8111/amd8111_usb.c b/src/southbridge/amd/amd8111/amd8111_usb.c index 2fec77bb17..f1ff4b1e4e 100644 --- a/src/southbridge/amd/amd8111/amd8111_usb.c +++ b/src/southbridge/amd/amd8111/amd8111_usb.c @@ -6,21 +6,16 @@ #include #include #include -#include -#include #include #include "amd8111.h" static void lpci_set_subsystem(device_t dev, unsigned vendor, unsigned device) { - pci_write_config32(dev, 0x44, + pci_write_config32(dev, 0x70, ((device & 0xffff) << 16) | (vendor & 0xffff)); } -static struct smbus_bus_operations lops_smbus_bus = { - /* I haven't seen the 2.0 SMBUS controller used yet. */ -}; static struct pci_operations lops_pci = { .set_subsystem = lpci_set_subsystem, }; @@ -30,13 +25,12 @@ static struct device_operations smbus_ops = { .enable_resources = pci_dev_enable_resources, .init = 0, .scan_bus = scan_static_bus, - .enable = amd8111_enable, +// .enable = amd8111_enable, .ops_pci = &lops_pci, - .ops_smbus_bus = &lops_smbus_bus, }; static struct pci_driver smbus_driver __pci_driver = { .ops = &smbus_ops, .vendor = PCI_VENDOR_ID_AMD, - .device = PCI_DEVICE_ID_AMD_8111_SMB, + .device = PCI_DEVICE_ID_AMD_8111_USB, }; -- cgit v1.2.3