From d096a64bcd8383e074809ab62b08d270ab688456 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ky=C3=B6sti=20M=C3=A4lkki?= Date: Wed, 20 Mar 2019 09:46:32 +0200 Subject: sb/broadcom/bcm5785: Consolidate PCI set_subsystem() MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This one uses vendor-specific register for the write. Change-Id: Ie36a87314054d00daed6a63b495bd5f5eabef66e Signed-off-by: Kyösti Mälkki Reviewed-on: https://review.coreboot.org/c/coreboot/+/31989 Tested-by: build bot (Jenkins) Reviewed-by: Subrata Banik --- src/southbridge/broadcom/bcm5785/ide.c | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) (limited to 'src/southbridge/broadcom/bcm5785/ide.c') diff --git a/src/southbridge/broadcom/bcm5785/ide.c b/src/southbridge/broadcom/bcm5785/ide.c index c96fc613fe..2932a236bb 100644 --- a/src/southbridge/broadcom/bcm5785/ide.c +++ b/src/southbridge/broadcom/bcm5785/ide.c @@ -35,15 +35,8 @@ static void ide_init(struct device *dev) { } -static void lpci_set_subsystem(struct device *dev, unsigned vendor, - unsigned device) -{ - pci_write_config32(dev, 0x40, - ((device & 0xffff) << 16) | (vendor & 0xffff)); -} - static struct pci_operations lops_pci = { - .set_subsystem = lpci_set_subsystem, + .set_subsystem = bcm5785_set_subsystem, }; static struct device_operations ide_ops = { -- cgit v1.2.3