diff options
Diffstat (limited to 'src/mainboard/google/beltino')
-rw-r--r-- | src/mainboard/google/beltino/acpi/thermal.asl | 10 | ||||
-rw-r--r-- | src/mainboard/google/beltino/acpi/usb.asl | 8 |
2 files changed, 9 insertions, 9 deletions
diff --git a/src/mainboard/google/beltino/acpi/thermal.asl b/src/mainboard/google/beltino/acpi/thermal.asl index c6b686ee6c..ef93848b26 100644 --- a/src/mainboard/google/beltino/acpi/thermal.asl +++ b/src/mainboard/google/beltino/acpi/thermal.asl @@ -158,7 +158,7 @@ Scope (\_TZ) { Method (_STA) { If (\FLVL <= 0) { - Return (One) + Return (1) } Else { Return (Zero) } @@ -183,7 +183,7 @@ Scope (\_TZ) { Method (_STA) { If (\FLVL <= 1) { - Return (One) + Return (1) } Else { Return (Zero) } @@ -208,7 +208,7 @@ Scope (\_TZ) { Method (_STA) { If (\FLVL <= 2) { - Return (One) + Return (1) } Else { Return (Zero) } @@ -233,7 +233,7 @@ Scope (\_TZ) { Method (_STA) { If (\FLVL <= 3) { - Return (One) + Return (1) } Else { Return (Zero) } @@ -258,7 +258,7 @@ Scope (\_TZ) { Method (_STA) { If (\FLVL <= 4) { - Return (One) + Return (1) } Else { Return (Zero) } diff --git a/src/mainboard/google/beltino/acpi/usb.asl b/src/mainboard/google/beltino/acpi/usb.asl index 681fae9d5a..7cee5acbb3 100644 --- a/src/mainboard/google/beltino/acpi/usb.asl +++ b/src/mainboard/google/beltino/acpi/usb.asl @@ -14,7 +14,7 @@ Scope (\_SB.PCI0.XHCI.HUB7.PRT2) // Visible Method (_PLD, 0, NotSerialized) // _PLD: Physical Location of Device { - Return (GPLD (One)) + Return (GPLD (1)) } } Scope (\_SB.PCI0.XHCI.HUB7.PRT3) @@ -31,7 +31,7 @@ Scope (\_SB.PCI0.XHCI.HUB7.PRT3) // Visible Method (_PLD, 0, NotSerialized) // _PLD: Physical Location of Device { - Return (GPLD (One)) + Return (GPLD (1)) } } Scope (\_SB.PCI0.XHCI.HUB7.PRT4) @@ -65,7 +65,7 @@ Scope (\_SB.PCI0.XHCI.HUB7.PRT5) // Visible Method (_PLD, 0, NotSerialized) // _PLD: Physical Location of Device { - Return (GPLD (One)) + Return (GPLD (1)) } } Scope (\_SB.PCI0.XHCI.HUB7.PRT6) @@ -82,7 +82,7 @@ Scope (\_SB.PCI0.XHCI.HUB7.PRT6) // Visible Method (_PLD, 0, NotSerialized) // _PLD: Physical Location of Device { - Return (GPLD (One)) + Return (GPLD (1)) } } Scope (\_SB.PCI0.XHCI.HUB7.SSP1) |