util/autoport: Make dsdt.asl prettier
Small cosmetic changes which fix aesthetic inaccuracies. Change-Id: I8fef4bbe12b283cee2ab8d078de950171757bbfe Signed-off-by: Angel Pons <th3fanbus@gmail.com> Reviewed-on: https://review.coreboot.org/c/30971 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Tristan Corrick <tristan@corrick.kiwi>
This commit is contained in:
parent
1b252fc37a
commit
ca62334d76
|
@ -844,7 +844,8 @@ func main() {
|
|||
}
|
||||
|
||||
dsdt.WriteString(
|
||||
`#include <arch/acpi.h>
|
||||
`
|
||||
#include <arch/acpi.h>
|
||||
DefinitionBlock(
|
||||
"dsdt.aml",
|
||||
"DSDT",
|
||||
|
@ -854,7 +855,7 @@ DefinitionBlock(
|
|||
0x20141018 // OEM revision
|
||||
)
|
||||
{
|
||||
// Some generic macros
|
||||
/* Some generic macros */
|
||||
#include "acpi/platform.asl"
|
||||
`)
|
||||
|
||||
|
@ -866,8 +867,7 @@ DefinitionBlock(
|
|||
}
|
||||
|
||||
dsdt.WriteString(`
|
||||
Scope (\_SB) {
|
||||
Device (PCI0)
|
||||
Device (\_SB.PCI0)
|
||||
{
|
||||
`)
|
||||
for _, x := range DSDTPCI0Includes {
|
||||
|
@ -878,7 +878,6 @@ DefinitionBlock(
|
|||
}
|
||||
dsdt.WriteString(
|
||||
` }
|
||||
}
|
||||
}
|
||||
`)
|
||||
|
||||
|
|
Loading…
Reference in New Issue