diff options
author | Yinghai Lu <yinghailu@gmail.com> | 2004-10-27 00:37:30 +0000 |
---|---|---|
committer | Yinghai Lu <yinghailu@gmail.com> | 2004-10-27 00:37:30 +0000 |
commit | eefdb038981a0fcc93df5c6c934f8138a43873bb (patch) | |
tree | 0e1d463b681d3ed4294230a707afce19f81f994c /src/southbridge/amd/amd8151 | |
parent | fb198640d8ba755b7022800d0077c41dceae1b94 (diff) |
S2885 winbond Superio all resource set
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1717 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/southbridge/amd/amd8151')
-rw-r--r-- | src/southbridge/amd/amd8151/amd8151_agp3.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/southbridge/amd/amd8151/amd8151_agp3.c b/src/southbridge/amd/amd8151/amd8151_agp3.c index dfb8a5592b..c54849bb51 100644 --- a/src/southbridge/amd/amd8151/amd8151_agp3.c +++ b/src/southbridge/amd/amd8151/amd8151_agp3.c @@ -54,6 +54,10 @@ static void agp3dev_enable(device_t dev) #endif } +static struct pci_operations pci_ops_pci_dev = { + .set_subsystem = pci_dev_set_subsystem, +}; + static struct device_operations agp3dev_ops = { .read_resources = pci_dev_read_resources, .set_resources = pci_dev_set_resources, @@ -61,6 +65,7 @@ static struct device_operations agp3dev_ops = { .init = 0, .scan_bus = 0, .enable = agp3dev_enable, + .ops_pci = &pci_ops_pci_dev, }; static struct pci_driver agp3dev_driver __pci_driver = { |