diff options
author | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2019-03-20 17:55:27 +0200 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2019-03-25 10:59:11 +0000 |
commit | dbd313280abce8ff365b248f57129758f2909ea7 (patch) | |
tree | 695a3ceff3df81e51451d83b268362ae6138e096 /src/southbridge/intel/i82801ix/pci.c | |
parent | 4074ce0cc716d4fc5447868ce0981c92e84f31b5 (diff) | |
download | coreboot-dbd313280abce8ff365b248f57129758f2909ea7.tar.xz |
sb/intel/{i82801g/i/j,bd82x6x}: Make use of generic set_subsystem()
Change-Id: Ia7a3eb2e29eb245c0e70abc23c2139aebc07cbfe
Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/31987
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Subrata Banik <subrata.banik@intel.com>
Diffstat (limited to 'src/southbridge/intel/i82801ix/pci.c')
-rw-r--r-- | src/southbridge/intel/i82801ix/pci.c | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/src/southbridge/intel/i82801ix/pci.c b/src/southbridge/intel/i82801ix/pci.c index 4003e740c4..889e042514 100644 --- a/src/southbridge/intel/i82801ix/pci.c +++ b/src/southbridge/intel/i82801ix/pci.c @@ -44,20 +44,8 @@ static void pci_init(struct device *dev) pci_write_config16(dev, PCI_SEC_STATUS, reg16); } -static void set_subsystem(struct device *dev, unsigned vendor, unsigned device) -{ - /* NOTE: 0x54 is not the default position! */ - if (!vendor || !device) { - pci_write_config32(dev, 0x54, - pci_read_config32(dev, PCI_VENDOR_ID)); - } else { - pci_write_config32(dev, 0x54, - ((device & 0xffff) << 16) | (vendor & 0xffff)); - } -} - static struct pci_operations pci_ops = { - .set_subsystem = set_subsystem, + .set_subsystem = pci_dev_set_subsystem, }; static struct device_operations device_ops = { |