sb/amd/cimx/sb800: Fix PCI devices ASL
There was a duplicate PCI 0:14.4 device in ASL. Only keep one. Change-Id: I21af7bdf64ef8a2d31a3452b32bc4a18f8d2df98 Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/59180 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Angel Pons <th3fanbus@gmail.com>
This commit is contained in:
parent
6670c68934
commit
0cd50ae661
|
@ -35,16 +35,6 @@ Method(_PRT,0) {
|
|||
|
||||
#include "pcie.asl"
|
||||
|
||||
/* PCI slot 1, 2, 3 */
|
||||
Device(PIBR) {
|
||||
Name(_ADR, 0x00140004)
|
||||
Name(_PRW, Package() {0x18, 4})
|
||||
|
||||
Method(_PRT, 0) {
|
||||
Return (PCIB)
|
||||
}
|
||||
}
|
||||
|
||||
Device(STCR) {
|
||||
Name(_ADR, 0x00110000)
|
||||
#include "acpi/sata.asl"
|
||||
|
@ -60,8 +50,14 @@ Device(SBUS) {
|
|||
|
||||
#include "lpc.asl"
|
||||
|
||||
Device(HPBR) {
|
||||
/* PCI bridge */
|
||||
Device(PIBR) {
|
||||
Name(_ADR, 0x00140004)
|
||||
Name(_PRW, Package() {0x18, 4})
|
||||
|
||||
Method(_PRT, 0) {
|
||||
Return (PCIB)
|
||||
}
|
||||
} /* end HostPciBr */
|
||||
|
||||
Device(ACAD) {
|
||||
|
|
Loading…
Reference in New Issue