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:
Angel Pons 2019-01-16 21:55:55 +01:00 committed by Patrick Georgi
parent 1b252fc37a
commit ca62334d76
1 changed files with 9 additions and 10 deletions

View File

@ -844,7 +844,8 @@ func main() {
} }
dsdt.WriteString( dsdt.WriteString(
`#include <arch/acpi.h> `
#include <arch/acpi.h>
DefinitionBlock( DefinitionBlock(
"dsdt.aml", "dsdt.aml",
"DSDT", "DSDT",
@ -854,7 +855,7 @@ DefinitionBlock(
0x20141018 // OEM revision 0x20141018 // OEM revision
) )
{ {
// Some generic macros /* Some generic macros */
#include "acpi/platform.asl" #include "acpi/platform.asl"
`) `)
@ -866,8 +867,7 @@ DefinitionBlock(
} }
dsdt.WriteString(` dsdt.WriteString(`
Scope (\_SB) { Device (\_SB.PCI0)
Device (PCI0)
{ {
`) `)
for _, x := range DSDTPCI0Includes { for _, x := range DSDTPCI0Includes {
@ -879,7 +879,6 @@ DefinitionBlock(
dsdt.WriteString( dsdt.WriteString(
` } ` }
} }
}
`) `)
} }