diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2020-09-30 13:03:26 +0200 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2021-02-11 10:24:03 +0000 |
commit | 4f880b9ab84d7b1ee67a53045c2be4cbde9a8d92 (patch) | |
tree | cd234bc125888b2e9b55a895f7d1b06b9ef3ef79 /src/southbridge/amd | |
parent | a03058a22a83cd183f17864f3f627df8aba46908 (diff) |
sb/amd/agesa/hudson/acpi/fch.asl: Sync whitespace
Make it look more like the file under amd/pi/hudson.
Change-Id: I5b40dc5b6f54bf68113826e693ca5963fec83d38
Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/50461
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-by: HAOUAS Elyes <ehaouas@noos.fr>
Diffstat (limited to 'src/southbridge/amd')
-rw-r--r-- | src/southbridge/amd/agesa/hudson/acpi/fch.asl | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/southbridge/amd/agesa/hudson/acpi/fch.asl b/src/southbridge/amd/agesa/hudson/acpi/fch.asl index 7777d7231a..400f15f4f1 100644 --- a/src/southbridge/amd/agesa/hudson/acpi/fch.asl +++ b/src/southbridge/amd/agesa/hudson/acpi/fch.asl @@ -7,14 +7,14 @@ Method(_OSC,4) { /* Check for proper PCI/PCIe UUID */ - If(Arg0 == ToUUID("33DB4D5B-1FF7-401C-9657-7441C03DD766")) + If (Arg0 == ToUUID("33DB4D5B-1FF7-401C-9657-7441C03DD766")) { /* Let OS control everything */ Return (Arg3) } Else { CreateDWordField(Arg3,0,CDW1) CDW1 |= 4 // Unrecognized UUID - Return(Arg3) + Return (Arg3) } } @@ -129,7 +129,7 @@ Method(_CRS, 0) { Local0 -= TOM1 MM1L = Local0 - Return(CRES) /* note to change the Name buffer */ + Return (CRES) /* note to change the Name buffer */ } /* end of Method(_SB.PCI0._CRS) */ #if CONFIG(HUDSON_IMC_FWM) @@ -170,21 +170,21 @@ Method(_INI, 0) { Method(OSFL, 0){ - if (OSVR != Ones) {Return(OSVR)} /* OS version was already detected */ + if (OSVR != Ones) {Return (OSVR)} /* OS version was already detected */ if (CondRefOf(\_OSI)) { - OSVR = 1 /* Assume some form of XP */ + OSVR = 1 /* Assume some form of XP */ if (\_OSI("Windows 2006")) /* Vista */ { OSVR = 2 } } else { - If(WCMP(\_OS,"Linux")) { - OSVR = 3 /* Linux */ + If (WCMP(\_OS,"Linux")) { + OSVR = 3 /* Linux */ } Else { - OSVR = 4 /* Gotta be WinCE */ + OSVR = 4 /* Gotta be WinCE */ } } - Return(OSVR) + Return (OSVR) } |