nb,sb/amd/pi/*/pci_devs: drop unused PCI device IDs

SATA_IDE_DEVID, AHCI_DEVID_MS and AHCI_DEVID_AMD are still kept even
though they're unused at the moment, but those might still be useful to
keep around, since the SATA controller can have different PCI device IDs
depending on in which mode it is in.

Signed-off-by: Felix Held <felix-coreboot@felixheld.de>
Change-Id: Ia05683b732d9748d9198225acaecbd4dc196733a
Reviewed-on: https://review.coreboot.org/c/coreboot/+/79577
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Eric Lai <ericllai@google.com>
diff --git a/src/northbridge/amd/pi/00730F01/pci_devs.h b/src/northbridge/amd/pi/00730F01/pci_devs.h
index f2633d8..92f6ac5 100644
--- a/src/northbridge/amd/pi/00730F01/pci_devs.h
+++ b/src/northbridge/amd/pi/00730F01/pci_devs.h
@@ -6,13 +6,11 @@
 /* Graphics and Display */
 #define GFX_DEV 0x1
 #define GFX_FUNC 0
-#define GFX_DEVID 0x9850
 #define GFX_DEVFN PCI_DEVFN(GFX_DEV, GFX_FUNC)
 
 /* Internal Audio controller */
 #define ACTL_DEV 0x1
 #define ACTL_FUNC 1
-#define ACTL_DEVID 0x9840
 #define ACTL_DEVFN PCI_DEVFN(ACTL_DEV, ACTL_FUNC)
 
 /* PCIe Ports */
@@ -23,7 +21,6 @@
 #define NB_PCIE_FUNC3	3
 #define NB_PCIE_FUNC4	4
 #define NB_PCIE_FUNC5	5
-#define NB_PCIE_PORT_DEVID 0x1439
 #define NB_PCIE_PORT0_DEVFN PCI_DEVFN(NB_PCIE_PORT2_DEV, NB_PCIE_FUNC0)
 #define NB_PCIE_PORT1_DEVFN PCI_DEVFN(NB_PCIE_PORT2_DEV, NB_PCIE_FUNC1)
 #define NB_PCIE_PORT2_DEVFN PCI_DEVFN(NB_PCIE_PORT2_DEV, NB_PCIE_FUNC2)
diff --git a/src/southbridge/amd/pi/hudson/pci_devs.h b/src/southbridge/amd/pi/hudson/pci_devs.h
index ec92d97..ff06b02 100644
--- a/src/southbridge/amd/pi/hudson/pci_devs.h
+++ b/src/southbridge/amd/pi/hudson/pci_devs.h
@@ -8,12 +8,10 @@
 /* XHCI */
 #define XHCI_DEV		0x10
 #define XHCI_FUNC		0
-#define XHCI_DEVID		0x7814
 #define XHCI_DEVFN		PCI_DEVFN(XHCI_DEV, XHCI_FUNC)
 
 #define XHCI2_DEV		0x10
 #define XHCI2_FUNC		1
-#define XHCI2_DEVID		0x7814
 #define XHCI2_DEVFN		PCI_DEVFN(XHCI2_DEV, XHCI2_FUNC)
 
 /* SATA */
@@ -33,7 +31,6 @@
 #define OHCI3_FUNC		0
 #define OHCI4_DEV		0x14
 #define OHCI4_FUNC		5
-#define OHCI_DEVID		0x7807
 #define OHCI1_DEVFN		PCI_DEVFN(OHCI1_DEV, OHCI1_FUNC)
 #define OHCI2_DEVFN		PCI_DEVFN(OHCI2_DEV, OHCI2_FUNC)
 #define OHCI3_DEVFN		PCI_DEVFN(OHCI3_DEV, OHCI3_FUNC)
@@ -46,7 +43,6 @@
 #define EHCI2_FUNC		2
 #define EHCI3_DEV		0x16
 #define EHCI3_FUNC		2
-#define EHCI_DEVID		0x7808
 #define EHCI1_DEVFN		PCI_DEVFN(EHCI1_DEV, EHCI1_FUNC)
 #define EHCI2_DEVFN		PCI_DEVFN(EHCI2_DEV, EHCI2_FUNC)
 #define EHCI3_DEVFN		PCI_DEVFN(EHCI3_DEV, EHCI3_FUNC)
@@ -54,32 +50,27 @@
 /* SMBUS */
 #define SMBUS_DEV		0x14
 #define SMBUS_FUNC		0
-#define SMBUS_DEVID		0x780B
 #define SMBUS_DEVFN		PCI_DEVFN(SMBUS_DEV, SMBUS_FUNC)
 
 /* HD Audio */
 #define HDA_DEV			0x14
 #define HDA_FUNC		2
-#define HDA_DEVID		0x780D
 #define HDA_DEVFN		PCI_DEVFN(HDA_DEV, HDA_FUNC)
 
 /* LPC BUS */
 #define PCU_DEV			0x14
 #define LPC_DEV			PCU_DEV
 #define LPC_FUNC		3
-#define LPC_DEVID		0x780E
 #define LPC_DEVFN		PCI_DEVFN(LPC_DEV, LPC_FUNC)
 
 /* PCI Ports */
 #define SB_PCI_PORT_DEV		0x14
 #define SB_PCI_PORT_FUNC	4
-#define SB_PCI_PORT_DEVID	0x780F
 #define SB_PCI_PORT_DEVFN	PCI_DEVFN(SB_PCI_PORT_DEV, SB_PCI_PORT_FUNC)
 
 /* SD Controller */
 #define SD_DEV			0x14
 #define SD_FUNC			7
-#define SD_DEVID		0x7806
 #define SD_DEVFN		PCI_DEVFN(SD_DEV, SD_FUNC)
 
 #endif /* _PI_HUDSON_PCI_DEVS_H_ */