diff options
author | Felix Singer <felixsinger@posteo.net> | 2022-12-26 09:43:07 +0100 |
---|---|---|
committer | Felix Singer <felixsinger@posteo.net> | 2022-12-27 09:06:47 +0000 |
commit | 9df60d36b2637c500030e7c9cef620002f7f47bf (patch) | |
tree | ee8b6e961747141ca37db831680fb3f371e4782a | |
parent | 42efd7f593c9d270ff330d1282d9c569d1ec709a (diff) |
tree/acpi: Replace constant "Zero" with actual number
Change-Id: I5a3e3506415f424bf0fdd48fc449520a76622af5
Signed-off-by: Felix Singer <felixsinger@posteo.net>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/71525
Reviewed-by: Subrata Banik <subratabanik@google.com>
Reviewed-by: Elyes Haouas <ehaouas@noos.fr>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
40 files changed, 106 insertions, 106 deletions
diff --git a/src/acpi/dsdt_top.asl b/src/acpi/dsdt_top.asl index 1ae933e95d..0dd2002ddc 100644 --- a/src/acpi/dsdt_top.asl +++ b/src/acpi/dsdt_top.asl @@ -10,8 +10,8 @@ /* Operating system enumeration. */ Name (OSYS, 0) -/* Zero => PIC mode, 1 => APIC Mode */ -Name (PICM, Zero) +/* 0 => PIC mode, 1 => APIC Mode */ +Name (PICM, 0) /* Power state (AC = 1) */ Name (PWRS, 1) diff --git a/src/drivers/intel/gma/acpi/common.asl b/src/drivers/intel/gma/acpi/common.asl index 59eae70bfa..e89d6d65e2 100644 --- a/src/drivers/intel/gma/acpi/common.asl +++ b/src/drivers/intel/gma/acpi/common.asl @@ -6,7 +6,7 @@ Method(BRID, 1, NotSerialized) { - Local0 = Match (BRIG, MEQ, Arg0, MTR, Zero, 2) + Local0 = Match (BRIG, MEQ, Arg0, MTR, 0, 2) If (Local0 == Ones) { Return (SizeOf(BRIG) - 1) diff --git a/src/drivers/intel/gma/acpi/configure_brightness_levels.asl b/src/drivers/intel/gma/acpi/configure_brightness_levels.asl index 689ebc485e..d6e417cac8 100644 --- a/src/drivers/intel/gma/acpi/configure_brightness_levels.asl +++ b/src/drivers/intel/gma/acpi/configure_brightness_levels.asl @@ -34,7 +34,7 @@ * Request back-light brightness change through mailbox 3 * * @param Arg0 The brightness level to set in percent - * @Return Zero on success, Ones on failure + * @Return 0 on success, Ones on failure * Errors: * ASLS is zero * * Mailbox 3 support not advertised * * Driver not loaded or not ready @@ -78,7 +78,7 @@ /* Request has been processed, check status: */ Local1 = (ASLC >> 12) & 3 If (Local1 == 0) { - Return (Zero) + Return (0) } Else { Return (Ones) } @@ -114,7 +114,7 @@ /* Prevent DivideByZero if backlight control isn't enabled */ If (BCLM == 0) { - Return (Zero) + Return (0) } /* Local0: current percentage */ Local0 = DRCL (BCLV * 100, BCLM) diff --git a/src/northbridge/amd/pi/00730F01/acpi/northbridge.asl b/src/northbridge/amd/pi/00730F01/acpi/northbridge.asl index a635247b96..eb4d4c6b9d 100644 --- a/src/northbridge/amd/pi/00730F01/acpi/northbridge.asl +++ b/src/northbridge/amd/pi/00730F01/acpi/northbridge.asl @@ -10,7 +10,7 @@ Name(_CID, EISAID("PNP0A03")) /* PCI Root Bridge */ Method(_BBN, 0, NotSerialized) /* Bus number = 0 */ { - Return(Zero) + Return(0) } Method(_STA, 0, NotSerialized) diff --git a/src/soc/amd/cezanne/acpi/pci0.asl b/src/soc/amd/cezanne/acpi/pci0.asl index 7bd434a7f8..93bfb1fccd 100644 --- a/src/soc/amd/cezanne/acpi/pci0.asl +++ b/src/soc/amd/cezanne/acpi/pci0.asl @@ -6,7 +6,7 @@ Device(PCI0) { External(TOM1, IntObj) /* Generated by root_complex.c */ Method(_BBN, 0, NotSerialized) { - Return(Zero) /* Bus number = 0 */ + Return(0) /* Bus number = 0 */ } Method(_STA, 0, NotSerialized) { diff --git a/src/soc/amd/common/acpi/dptc.asl b/src/soc/amd/common/acpi/dptc.asl index aa70050ff3..84238d99a8 100644 --- a/src/soc/amd/common/acpi/dptc.asl +++ b/src/soc/amd/common/acpi/dptc.asl @@ -11,7 +11,7 @@ Scope (\_SB) /* If _SB.DDEF is not present, DPTC is not enabled so return early. */ If (!CondRefOf (\_SB.DDEF)) { - Return (Zero) + Return (0) } /* If _SB.DTHL is not present, then DPTC Tablet Mode is not enabled. @@ -21,14 +21,14 @@ Scope (\_SB) (!\_SB.PCI0.LPCB.EC0.BTEX || \_SB.PCI0.LPCB.EC0.BFCR || \_SB.PCI0.LPCB.EC0.BFCT)) { \_SB.DTHL() - Return (Zero) + Return (0) } /* If _SB.DTAB is not present, then DPTC Tablet Mode is not enabled. */ If (CondRefOf (\_SB.DTAB) && (\_SB.PCI0.LPCB.EC0.TBMD == 1)) { \_SB.DTAB() - Return (Zero) + Return (0) } #if CONFIG(FEATURE_DYNAMIC_DPTC) @@ -36,6 +36,6 @@ Scope (\_SB) #else \_SB.DDEF() #endif - Return (Zero) + Return (0) } } diff --git a/src/soc/amd/glinda/acpi/pci0.asl b/src/soc/amd/glinda/acpi/pci0.asl index aa31c3302e..2f7e0baa06 100644 --- a/src/soc/amd/glinda/acpi/pci0.asl +++ b/src/soc/amd/glinda/acpi/pci0.asl @@ -8,7 +8,7 @@ Device(PCI0) { External(TOM1, IntObj) /* Generated by root_complex.c */ Method(_BBN, 0, NotSerialized) { - Return(Zero) /* Bus number = 0 */ + Return(0) /* Bus number = 0 */ } Method(_STA, 0, NotSerialized) { diff --git a/src/soc/amd/mendocino/acpi/pci0.asl b/src/soc/amd/mendocino/acpi/pci0.asl index e729ba38ff..5bf2f3e7c7 100644 --- a/src/soc/amd/mendocino/acpi/pci0.asl +++ b/src/soc/amd/mendocino/acpi/pci0.asl @@ -8,7 +8,7 @@ Device(PCI0) { External(TOM1, IntObj) /* Generated by root_complex.c */ Method(_BBN, 0, NotSerialized) { - Return(Zero) /* Bus number = 0 */ + Return(0) /* Bus number = 0 */ } Method(_STA, 0, NotSerialized) { diff --git a/src/soc/amd/morgana/acpi/pci0.asl b/src/soc/amd/morgana/acpi/pci0.asl index 7ccb00519f..3999d40c1c 100644 --- a/src/soc/amd/morgana/acpi/pci0.asl +++ b/src/soc/amd/morgana/acpi/pci0.asl @@ -8,7 +8,7 @@ Device(PCI0) { External(TOM1, IntObj) /* Generated by root_complex.c */ Method(_BBN, 0, NotSerialized) { - Return(Zero) /* Bus number = 0 */ + Return(0) /* Bus number = 0 */ } Method(_STA, 0, NotSerialized) { diff --git a/src/soc/amd/picasso/acpi/northbridge.asl b/src/soc/amd/picasso/acpi/northbridge.asl index f6e198f5f2..6850a1a0e4 100644 --- a/src/soc/amd/picasso/acpi/northbridge.asl +++ b/src/soc/amd/picasso/acpi/northbridge.asl @@ -10,7 +10,7 @@ Name(_CID, EISAID("PNP0A03")) /* PCI Root Bridge */ Method(_BBN, 0, NotSerialized) /* Bus number = 0 */ { - Return(Zero) + Return(0) } Method(_STA, 0, NotSerialized) diff --git a/src/soc/amd/stoneyridge/acpi/northbridge.asl b/src/soc/amd/stoneyridge/acpi/northbridge.asl index 042f66a4e1..7ed622541f 100644 --- a/src/soc/amd/stoneyridge/acpi/northbridge.asl +++ b/src/soc/amd/stoneyridge/acpi/northbridge.asl @@ -10,7 +10,7 @@ Name(_CID, EISAID("PNP0A03")) /* PCI Root Bridge */ Method(_BBN, 0, NotSerialized) /* Bus number = 0 */ { - Return(Zero) + Return(0) } Method(_STA, 0, NotSerialized) diff --git a/src/soc/amd/stoneyridge/acpi/sb_pci0_fch.asl b/src/soc/amd/stoneyridge/acpi/sb_pci0_fch.asl index d9556004c0..6a7ed2ea42 100644 --- a/src/soc/amd/stoneyridge/acpi/sb_pci0_fch.asl +++ b/src/soc/amd/stoneyridge/acpi/sb_pci0_fch.asl @@ -410,7 +410,7 @@ Method(FDDC, 2, Serialized) Switch(ToInteger(Arg0)) { Case(5) { - I0PD = Zero + I0PD = 0 Local0 = I0DS while(Local0 != 0x0) { Local0 = I0DS @@ -418,7 +418,7 @@ Method(FDDC, 2, Serialized) I0TD = 0x03 } Case(6) { - I1PD = Zero + I1PD = 0 Local0 = I1DS while(Local0 != 0x0) { Local0 = I1DS @@ -426,7 +426,7 @@ Method(FDDC, 2, Serialized) I1TD = 0x03 } Case(7) { - I2PD = Zero + I2PD = 0 Local0 = I2DS while(Local0 != 0x0) { Local0 = I2DS @@ -434,7 +434,7 @@ Method(FDDC, 2, Serialized) I2TD = 0x03 } Case(8) { - I3PD = Zero + I3PD = 0 Local0 = I3DS while(Local0 != 0x0) { Local0 = I3DS @@ -442,7 +442,7 @@ Method(FDDC, 2, Serialized) I3TD = 0x03 } Case(11) { - U0PD = Zero + U0PD = 0 Local0 = U0DS while(Local0 != 0x0) { Local0 = U0DS @@ -450,7 +450,7 @@ Method(FDDC, 2, Serialized) U0TD = 0x03 } Case(12) { - U1PD = Zero + U1PD = 0 Local0 = U1DS while(Local0 != 0x0) { Local0 = U1DS @@ -461,7 +461,7 @@ Method(FDDC, 2, Serialized) Case(18) { U2D3()} /* EHCI */ Case(23) { U3D3()} /* XHCI */ Case(24) { /* SD */ - SDPD = Zero + SDPD = 0 Local0 = SDDS while(Local0 != 0x0) { Local0 = SDDS @@ -472,7 +472,7 @@ Method(FDDC, 2, Serialized) /* Turn off Power */ if (I0TD == 3) { if (SATD == 3) { - if (SDTD == 3) { PG1A = Zero } + if (SDTD == 3) { PG1A = 0 } } } if (I1TD == 3) { @@ -481,7 +481,7 @@ Method(FDDC, 2, Serialized) if (U0TD == 3) { if (U1TD == 3) { if (U2TD == 3) { - PG2_ = Zero + PG2_ = 0 } } } diff --git a/src/soc/amd/stoneyridge/acpi/usb.asl b/src/soc/amd/stoneyridge/acpi/usb.asl index 4d1aa7f33f..1626bb6f0c 100644 --- a/src/soc/amd/stoneyridge/acpi/usb.asl +++ b/src/soc/amd/stoneyridge/acpi/usb.asl @@ -5,7 +5,7 @@ Device(EHC0) { Name(_ADR, 0x00120000) Name(_PRW, Package() { 0xb, 3 }) Device (RHUB) { - Name (_ADR, Zero) + Name (_ADR, 0) Device (HS01) { Name (_ADR, 1) } Device (HS02) { Name (_ADR, 2) } Device (HS03) { Name (_ADR, 3) } @@ -121,14 +121,14 @@ Field(EHMC, DwordAcc, NoLock, Preserve) Method(U2D3,0, Serialized) { - if (EH10 != Zero) { + if (EH10 != 0) { EHBA = EH10 EHME = 1 SSIM = ESIM } if (E_PS == 3) { - RQTY = Zero + RQTY = 0 RQ18 = 1 Local0 = U2SR @@ -136,10 +136,10 @@ Method(U2D3,0, Serialized) Local0 = U2SR } - U2PD = Zero + U2PD = 0 Local0 = U2DS - while (Local0 != Zero) { + while (Local0 != 0) { Local0 = U2DS } @@ -155,10 +155,10 @@ Method(U2D3,0, Serialized) Method(U2D0,0, Serialized) { PWGC (0x40, 1) - U2RP = Zero + U2RP = 0 U2TD = 0x00 - U2TD = Zero + U2TD = 0 U2PD = 1 Local0 = U2DS @@ -175,7 +175,7 @@ Method(U2D0,0, Serialized) EH2C = EHID - if (EH10 != Zero) { + if (EH10 != 0) { EHBA = EH10 EHME = 1 ESIM = SSIM @@ -196,7 +196,7 @@ Method(LXFW,3, Serialized) //Load Xhci FirmWare while (!Local0) { Local0 = FPLC } - FPLS = Zero + FPLS = 0 } Method(U3D3,0, Serialized) @@ -211,7 +211,7 @@ Method(U3D3,0, Serialized) } UD3P = 1 /* U3P_D3Cold_PWRDN */ - U3PD = Zero /* PwrOnDev */ + U3PD = 0 /* PwrOnDev */ Local0 = U3DS while (Local0) { /* RstBState, RefClkOkState, PwrRstBState */ Local0 = U3DS @@ -225,24 +225,24 @@ Method(U3D3,0, Serialized) PGA3 &= 0x9f /* SwUsb2S5RstB */ U2RP = 1 /* USB2_RefClk_Pwdn */ } - U3PG = Zero /* XhcPwrGood */ + U3PG = 0 /* XhcPwrGood */ U3PS = 1 /* Usb3PowerSel */ } } Method(U3D0,0, Serialized) { - U3PS = Zero /* Usb3PowerSel */ + U3PS = 0 /* Usb3PowerSel */ U3PG = 1 /* XhcPwrGood */ - U2RP = Zero - U3RP = Zero + U2RP = 0 + U3RP = 0 Local0 = PGA3 & 0xdf Local0 |= 0x40 PGA3 = Local0 /* SwUsb2S5RstB */ - U3TD = Zero /* TargetedDeviceState */ + U3TD = 0 /* TargetedDeviceState */ U3PD = 1 /* PwrOnDev */ Local0 = U3DS /* wait for RstBState, RefClkOkState, PwrRstBState */ @@ -255,7 +255,7 @@ Method(U3D0,0, Serialized) Local0 = U3PY } - U3PR = Zero /* U3P_RESTORE_RESET */ + U3PR = 0 /* U3P_RESTORE_RESET */ Local0 = AUSS /* AutoSizeStart */ if (Local0 != 1) { @@ -272,7 +272,7 @@ Method(U3D0,0, Serialized) X0_R () U3PR = 1 /* U3P_RESTORE_RESET */ - UD3P = Zero /* U3P_D3Cold_PWRDN */ + UD3P = 0 /* U3P_D3Cold_PWRDN */ U3TD = 1 /* TargetedDeviceState */ } @@ -314,7 +314,7 @@ CreateDWordField(SVBF, 0x7B0, SSIM) /* EHCI SIM BIT */ Method(X0_S,0) { XHID = XH2C - IDEX = Zero + IDEX = 0 S000 = DATA IDEX = 0x00000004 S004 = DATA @@ -375,7 +375,7 @@ Method(X0_S,0) Method(X0_R,0) { XH2C = XHID - IDEX = Zero + IDEX = 0 DATA = S000 IDEX = 0x000000004 DATA = S004 diff --git a/src/soc/intel/alderlake/acpi/tcss_xhci.asl b/src/soc/intel/alderlake/acpi/tcss_xhci.asl index b3fe653d26..0b7aa093e1 100644 --- a/src/soc/intel/alderlake/acpi/tcss_xhci.asl +++ b/src/soc/intel/alderlake/acpi/tcss_xhci.asl @@ -109,7 +109,7 @@ Method (_DSW, 3) */ Device (RHUB) { - Name (_ADR, Zero) + Name (_ADR, 0) /* High Speed Ports */ Device (HS01) diff --git a/src/soc/intel/alderlake/acpi/xhci.asl b/src/soc/intel/alderlake/acpi/xhci.asl index b44bc671f7..3ccc22eb91 100644 --- a/src/soc/intel/alderlake/acpi/xhci.asl +++ b/src/soc/intel/alderlake/acpi/xhci.asl @@ -27,7 +27,7 @@ Device (XHCI) /* Root Hub for Alder Lake-P PCH */ Device (RHUB) { - Name (_ADR, Zero) + Name (_ADR, 0) /* USB2 */ Device (HS01) { Name (_ADR, 1) } @@ -60,7 +60,7 @@ Device (XHCI) /* Root Hub for Alder Lake-P PCH */ Device (RHUB) { - Name (_ADR, Zero) + Name (_ADR, 0) /* USB2 */ Device (HS01) { Name (_ADR, 1) } diff --git a/src/soc/intel/apollolake/acpi/xhci.asl b/src/soc/intel/apollolake/acpi/xhci.asl index 1e506225a5..1f38e4cd02 100644 --- a/src/soc/intel/apollolake/acpi/xhci.asl +++ b/src/soc/intel/apollolake/acpi/xhci.asl @@ -19,7 +19,7 @@ Device (XHCI) { Device (RHUB) { /* Root Hub */ - Name (_ADR, Zero) + Name (_ADR, 0) #if CONFIG(SOC_INTEL_GEMINILAKE) #include "xhci_glk_ports.asl" diff --git a/src/soc/intel/baytrail/acpi/dptf/charger.asl b/src/soc/intel/baytrail/acpi/dptf/charger.asl index d4a92f1af7..44e40646b7 100644 --- a/src/soc/intel/baytrail/acpi/dptf/charger.asl +++ b/src/soc/intel/baytrail/acpi/dptf/charger.asl @@ -30,7 +30,7 @@ Device (TCHG) Local0-- /* Check if charging is disabled (AC removed) */ - If (\PWRS == Zero) { + If (\PWRS == 0) { /* Return last power state */ Return (Local0) } Else { diff --git a/src/soc/intel/baytrail/acpi/irqlinks.asl b/src/soc/intel/baytrail/acpi/irqlinks.asl index 1586ec59e5..af89c33091 100644 --- a/src/soc/intel/baytrail/acpi/irqlinks.asl +++ b/src/soc/intel/baytrail/acpi/irqlinks.asl @@ -28,7 +28,7 @@ Device (LNKA) CreateWordField(RTLA, 1, IRQ0) /* Clear the WordField */ - IRQ0 = Zero + IRQ0 = 0 /* Set the bit from PRTA */ IRQ0 = 1 << (PRTA & 0x0f) @@ -87,7 +87,7 @@ Device (LNKB) CreateWordField(RTLB, 1, IRQ0) /* Clear the WordField */ - IRQ0 = Zero + IRQ0 = 0 /* Set the bit from PRTB */ IRQ0 = 1 << (PRTB & 0x0f) @@ -146,7 +146,7 @@ Device (LNKC) CreateWordField(RTLC, 1, IRQ0) /* Clear the WordField */ - IRQ0 = Zero + IRQ0 = 0 /* Set the bit from PRTC */ IRQ0 = 1 << (PRTC & 0x0f) @@ -205,7 +205,7 @@ Device (LNKD) CreateWordField(RTLD, 1, IRQ0) /* Clear the WordField */ - IRQ0 = Zero + IRQ0 = 0 /* Set the bit from PRTD */ IRQ0 = 1 << (PRTD & 0x0f) @@ -264,7 +264,7 @@ Device (LNKE) CreateWordField(RTLE, 1, IRQ0) /* Clear the WordField */ - IRQ0 = Zero + IRQ0 = 0 /* Set the bit from PRTE */ IRQ0 = 1 << (PRTE & 0x0f) @@ -323,7 +323,7 @@ Device (LNKF) CreateWordField(RTLF, 1, IRQ0) /* Clear the WordField */ - IRQ0 = Zero + IRQ0 = 0 /* Set the bit from PRTF */ IRQ0 = 1 << (PRTF & 0x0f) @@ -382,7 +382,7 @@ Device (LNKG) CreateWordField(RTLG, 1, IRQ0) /* Clear the WordField */ - IRQ0 = Zero + IRQ0 = 0 /* Set the bit from PRTG */ IRQ0 = 1 << (PRTG & 0x0f) @@ -441,7 +441,7 @@ Device (LNKH) CreateWordField(RTLH, 1, IRQ0) /* Clear the WordField */ - IRQ0 = Zero + IRQ0 = 0 /* Set the bit from PRTH */ IRQ0 = 1 << (PRTH & 0x0f) diff --git a/src/soc/intel/baytrail/acpi/southcluster.asl b/src/soc/intel/baytrail/acpi/southcluster.asl index 53f181eaad..dacdd29e06 100644 --- a/src/soc/intel/baytrail/acpi/southcluster.asl +++ b/src/soc/intel/baytrail/acpi/southcluster.asl @@ -155,7 +155,7 @@ Method (_CRS, 0, Serialized) CreateDWordField (MCRS, ^LMEM._MIN, LMIN) CreateDWordField (MCRS, ^LMEM._MAX, LMAX) CreateDWordField (MCRS, ^LMEM._LEN, LLEN) - If (LPFW != Zero && LPEN == 1) + If (LPFW != 0 && LPEN == 1) { LMIN = LPFW LLEN = 0x00100000 @@ -163,9 +163,9 @@ Method (_CRS, 0, Serialized) } Else { - LMIN = Zero - LMAX = Zero - LLEN = Zero + LMIN = 0 + LMAX = 0 + LLEN = 0 } /* Update PCI resource area */ diff --git a/src/soc/intel/baytrail/acpi/xhci.asl b/src/soc/intel/baytrail/acpi/xhci.asl index 86b6ae9bf0..368f34faad 100644 --- a/src/soc/intel/baytrail/acpi/xhci.asl +++ b/src/soc/intel/baytrail/acpi/xhci.asl @@ -17,7 +17,7 @@ Device (XHCI) }) // REV: Revision 0x02 for ACPI 5.0 - CreateField (DerefOf (PCKG[0]), Zero, 0x07, REV) + CreateField (DerefOf (PCKG[0]), 0, 0x07, REV) REV = 0x02 // VISI: Port visibility to user per port diff --git a/src/soc/intel/braswell/acpi/dptf/charger.asl b/src/soc/intel/braswell/acpi/dptf/charger.asl index 76209c9a46..0c9b3f51d2 100644 --- a/src/soc/intel/braswell/acpi/dptf/charger.asl +++ b/src/soc/intel/braswell/acpi/dptf/charger.asl @@ -30,7 +30,7 @@ Device (TCHG) Local0-- /* Check if charging is disabled (AC removed) */ - If (\_SB.PCI0.LPCB.EC0.ACEX == Zero) { + If (\_SB.PCI0.LPCB.EC0.ACEX == 0) { /* Return last power state */ Return (Local0) } Else { diff --git a/src/soc/intel/braswell/acpi/irqlinks.asl b/src/soc/intel/braswell/acpi/irqlinks.asl index e3df22de7b..b1d9d6acb5 100644 --- a/src/soc/intel/braswell/acpi/irqlinks.asl +++ b/src/soc/intel/braswell/acpi/irqlinks.asl @@ -28,7 +28,7 @@ Device (LNKA) CreateWordField(RTLA, 1, IRQ0) /* Clear the WordField */ - IRQ0 = Zero + IRQ0 = 0 /* Set the bit from PRTA */ IRQ0 = 1 << (PRTA & 0x0f) @@ -87,7 +87,7 @@ Device (LNKB) CreateWordField(RTLB, 1, IRQ0) /* Clear the WordField */ - IRQ0 = Zero + IRQ0 = 0 /* Set the bit from PRTB */ IRQ0 = 1 << (PRTB & 0x0f) @@ -146,7 +146,7 @@ Device (LNKC) CreateWordField(RTLC, 1, IRQ0) /* Clear the WordField */ - IRQ0 = Zero + IRQ0 = 0 /* Set the bit from PRTC */ IRQ0 = 1 << (PRTC & 0x0f) @@ -205,7 +205,7 @@ Device (LNKD) CreateWordField(RTLD, 1, IRQ0) /* Clear the WordField */ - IRQ0 = Zero + IRQ0 = 0 /* Set the bit from PRTD */ IRQ0 = 1 << (PRTD & 0x0f) @@ -264,7 +264,7 @@ Device (LNKE) CreateWordField(RTLE, 1, IRQ0) /* Clear the WordField */ - IRQ0 = Zero + IRQ0 = 0 /* Set the bit from PRTE */ IRQ0 = 1 << (PRTE & 0x0f) @@ -323,7 +323,7 @@ Device (LNKF) CreateWordField(RTLF, 1, IRQ0) /* Clear the WordField */ - IRQ0 = Zero + IRQ0 = 0 /* Set the bit from PRTF */ IRQ0 = 1 << (PRTF & 0x0f) @@ -382,7 +382,7 @@ Device (LNKG) CreateWordField(RTLG, 1, IRQ0) /* Clear the WordField */ - IRQ0 = Zero + IRQ0 = 0 /* Set the bit from PRTG */ IRQ0 = 1 << (PRTG & 0x0f) @@ -441,7 +441,7 @@ Device (LNKH) CreateWordField(RTLH, 1, IRQ0) /* Clear the WordField */ - IRQ0 = Zero + IRQ0 = 0 /* Set the bit from PRTH */ IRQ0 = 1 << (PRTH & 0x0f) diff --git a/src/soc/intel/braswell/acpi/scc.asl b/src/soc/intel/braswell/acpi/scc.asl index 91c5d278f1..a071e0861d 100644 --- a/src/soc/intel/braswell/acpi/scc.asl +++ b/src/soc/intel/braswell/acpi/scc.asl @@ -96,7 +96,7 @@ Device (PEMC) Name (_ADR, 0x08) Method (_RMV, 0, NotSerialized) { - Return (Zero) + Return (0) } } } diff --git a/src/soc/intel/braswell/acpi/southcluster.asl b/src/soc/intel/braswell/acpi/southcluster.asl index 39aa076caf..3dcc6c1951 100644 --- a/src/soc/intel/braswell/acpi/southcluster.asl +++ b/src/soc/intel/braswell/acpi/southcluster.asl @@ -154,7 +154,7 @@ Method (_CRS, 0, Serialized) CreateDWordField (MCRS, LMEM._MIN, LMIN) CreateDWordField (MCRS, LMEM._MAX, LMAX) CreateDWordField (MCRS, LMEM._LEN, LLEN) - If (LPFW != Zero && LPEN == 1) + If (LPFW != 0 && LPEN == 1) { LMIN = LPFW LMAX = LMIN + 0x001FFFFF @@ -162,9 +162,9 @@ Method (_CRS, 0, Serialized) } Else { - LMIN = Zero - LMAX = Zero - LLEN = Zero + LMIN = 0 + LMAX = 0 + LLEN = 0 } /* Update PCI resource area */ diff --git a/src/soc/intel/cannonlake/acpi/xhci.asl b/src/soc/intel/cannonlake/acpi/xhci.asl index 20a56debf9..fbe811e952 100644 --- a/src/soc/intel/cannonlake/acpi/xhci.asl +++ b/src/soc/intel/cannonlake/acpi/xhci.asl @@ -48,7 +48,7 @@ Method (UWES, 3, Serialized) While (1) { FindSetRightBit (Local0, Local1) - If (Local1 == Zero) { + If (Local1 == 0) { Break } UPWE (Local1, Arg1, Arg2) @@ -102,7 +102,7 @@ Device (XHCI) /* Root Hub for Cannonlake-LP PCH */ Device (RHUB) { - Name (_ADR, Zero) + Name (_ADR, 0) /* USB2 */ Device (HS01) { Name (_ADR, 1) } diff --git a/src/soc/intel/common/acpi/wifi.asl b/src/soc/intel/common/acpi/wifi.asl index 23923a5c18..56c84550c3 100644 --- a/src/soc/intel/common/acpi/wifi.asl +++ b/src/soc/intel/common/acpi/wifi.asl @@ -2,7 +2,7 @@ Device (WIFI) { - Name (_ADR, Zero) + Name (_ADR, 0) OperationRegion(WIXX, PCI_Config, 0x00, 0x10) Name (WRDX, Package() { diff --git a/src/soc/intel/common/block/acpi/acpi/northbridge.asl b/src/soc/intel/common/block/acpi/acpi/northbridge.asl index 28d38edc0d..4ef151fc98 100644 --- a/src/soc/intel/common/block/acpi/acpi/northbridge.asl +++ b/src/soc/intel/common/block/acpi/acpi/northbridge.asl @@ -5,8 +5,8 @@ Name (_HID, EisaId ("PNP0A08") /* PCI Express Bus */) // _HID: Hardware ID Name (_CID, EisaId ("PNP0A03") /* PCI Bus */) // _CID: Compatible ID -Name (_SEG, Zero) // _SEG: PCI Segment -Name (_UID, Zero) // _UID: Unique ID +Name (_SEG, 0) // _SEG: PCI Segment +Name (_UID, 0) // _UID: Unique ID Device (MCHC) { diff --git a/src/soc/intel/elkhartlake/acpi/pch_hda.asl b/src/soc/intel/elkhartlake/acpi/pch_hda.asl index dd031bff2c..e4ab7fb634 100644 --- a/src/soc/intel/elkhartlake/acpi/pch_hda.asl +++ b/src/soc/intel/elkhartlake/acpi/pch_hda.asl @@ -31,12 +31,12 @@ Device (HDAS) * Function 0: Function Support Query * Returns a bitmask of functions supported. */ - If (Arg2 == Zero) { + If (Arg2 == 0) { /* * NHLT Query only supported for revision 1 and * if NHLT address and length are set in NVS. */ - If ((Arg1 == 1) && ((NHLA != Zero) && (NHLL != Zero))) { + If ((Arg1 == 1) && ((NHLA != 0) && (NHLL != 0))) { Return (Buffer (1) { 0x03 }) } Else { Return (Buffer (1) { 0x01 }) diff --git a/src/soc/intel/elkhartlake/acpi/xhci.asl b/src/soc/intel/elkhartlake/acpi/xhci.asl index fb57065b87..89eaea35d8 100644 --- a/src/soc/intel/elkhartlake/acpi/xhci.asl +++ b/src/soc/intel/elkhartlake/acpi/xhci.asl @@ -27,7 +27,7 @@ Device (XHCI) /* Root Hub for Elkhartlake PCH */ Device (RHUB) { - Name (_ADR, Zero) + Name (_ADR, 0) /* USB2 */ Device (HS01) { Name (_ADR, 1) } diff --git a/src/soc/intel/icelake/acpi/pch_hda.asl b/src/soc/intel/icelake/acpi/pch_hda.asl index 01f957c0a7..4941f6a137 100644 --- a/src/soc/intel/icelake/acpi/pch_hda.asl +++ b/src/soc/intel/icelake/acpi/pch_hda.asl @@ -31,12 +31,12 @@ Device (HDAS) * Function 0: Function Support Query * Returns a bitmask of functions supported. */ - If (Arg2 == Zero) { + If (Arg2 == 0) { /* * NHLT Query only supported for revision 1 and * if NHLT address and length are set in NVS. */ - If (Arg1 == 1 && NHLA != Zero && NHLL != Zero) { + If (Arg1 == 1 && NHLA != 0 && NHLL != 0) { Return (Buffer (1) { 0x03 }) } Else { Return (Buffer (1) { 0x01 }) diff --git a/src/soc/intel/icelake/acpi/xhci.asl b/src/soc/intel/icelake/acpi/xhci.asl index bde7045357..73f7906d17 100644 --- a/src/soc/intel/icelake/acpi/xhci.asl +++ b/src/soc/intel/icelake/acpi/xhci.asl @@ -27,7 +27,7 @@ Device (XHCI) /* Root Hub for Icelake-LP PCH */ Device (RHUB) { - Name (_ADR, Zero) + Name (_ADR, 0) /* USB2 */ Device (HS01) { Name (_ADR, 1) } diff --git a/src/soc/intel/jasperlake/acpi/pch_hda.asl b/src/soc/intel/jasperlake/acpi/pch_hda.asl index dd031bff2c..e4ab7fb634 100644 --- a/src/soc/intel/jasperlake/acpi/pch_hda.asl +++ b/src/soc/intel/jasperlake/acpi/pch_hda.asl @@ -31,12 +31,12 @@ Device (HDAS) * Function 0: Function Support Query * Returns a bitmask of functions supported. */ - If (Arg2 == Zero) { + If (Arg2 == 0) { /* * NHLT Query only supported for revision 1 and * if NHLT address and length are set in NVS. */ - If ((Arg1 == 1) && ((NHLA != Zero) && (NHLL != Zero))) { + If ((Arg1 == 1) && ((NHLA != 0) && (NHLL != 0))) { Return (Buffer (1) { 0x03 }) } Else { Return (Buffer (1) { 0x01 }) diff --git a/src/soc/intel/jasperlake/acpi/xhci.asl b/src/soc/intel/jasperlake/acpi/xhci.asl index 85ce862450..8ecbe4723d 100644 --- a/src/soc/intel/jasperlake/acpi/xhci.asl +++ b/src/soc/intel/jasperlake/acpi/xhci.asl @@ -27,7 +27,7 @@ Device (XHCI) /* Root Hub for Jasperlake PCH */ Device (RHUB) { - Name (_ADR, Zero) + Name (_ADR, 0) /* USB2 */ Device (HS01) { Name (_ADR, 1) } diff --git a/src/soc/intel/meteorlake/acpi/tcss_xhci.asl b/src/soc/intel/meteorlake/acpi/tcss_xhci.asl index acbeb30c13..422e6f7f45 100644 --- a/src/soc/intel/meteorlake/acpi/tcss_xhci.asl +++ b/src/soc/intel/meteorlake/acpi/tcss_xhci.asl @@ -103,7 +103,7 @@ Method (_DSW, 3) */ Device (RHUB) { - Name (_ADR, Zero) + Name (_ADR, 0) /* High Speed Ports */ Device (HS01) diff --git a/src/soc/intel/meteorlake/acpi/xhci.asl b/src/soc/intel/meteorlake/acpi/xhci.asl index 34b96f35d7..a2ddebd9ed 100644 --- a/src/soc/intel/meteorlake/acpi/xhci.asl +++ b/src/soc/intel/meteorlake/acpi/xhci.asl @@ -27,7 +27,7 @@ Device (XHCI) /* Root Hub for Meteorlake */ Device (RHUB) { - Name (_ADR, Zero) + Name (_ADR, 0) /* USB2 */ Device (HS01) { Name (_ADR, 1) } diff --git a/src/soc/intel/skylake/acpi/systemagent.asl b/src/soc/intel/skylake/acpi/systemagent.asl index f9b8f2d7c3..5a15ac5562 100644 --- a/src/soc/intel/skylake/acpi/systemagent.asl +++ b/src/soc/intel/skylake/acpi/systemagent.asl @@ -5,8 +5,8 @@ Name (_HID, EisaId ("PNP0A08") /* PCI Express Bus */) // _HID: Hardware ID Name (_CID, EisaId ("PNP0A03") /* PCI Bus */) // _CID: Compatible ID -Name (_SEG, Zero) // _SEG: PCI Segment -Name (_UID, Zero) // _UID: Unique ID +Name (_SEG, 0) // _SEG: PCI Segment +Name (_UID, 0) // _UID: Unique ID Device (MCHC) { diff --git a/src/soc/intel/skylake/acpi/xhci.asl b/src/soc/intel/skylake/acpi/xhci.asl index 812bbed4ba..e8c5ebf27e 100644 --- a/src/soc/intel/skylake/acpi/xhci.asl +++ b/src/soc/intel/skylake/acpi/xhci.asl @@ -46,7 +46,7 @@ Method (UWES, 3, Serialized) While (1) { FindSetRightBit (Local0, Local1) - If (Local1 == Zero) { + If (Local1 == 0) { Break } UPWE (Local1, Arg1, Arg2) @@ -209,7 +209,7 @@ Device (XHCI) /* Root Hub for Skylake-LP PCH */ Device (RHUB) { - Name (_ADR, Zero) + Name (_ADR, 0) // GPLD: Generate Port Location Data (PLD) Method (GPLD, 1, Serialized) @@ -221,7 +221,7 @@ Device (XHCI) }) // REV: Revision 0x02 for ACPI 5.0 - CreateField (DerefOf (PCKG[0]), Zero, 0x07, REV) + CreateField (DerefOf (PCKG[0]), 0, 0x07, REV) REV = 0x02 // VISI: Port visibility to user per port diff --git a/src/soc/intel/tigerlake/acpi/tcss_xhci.asl b/src/soc/intel/tigerlake/acpi/tcss_xhci.asl index 32aa2f28bd..1ca4117697 100644 --- a/src/soc/intel/tigerlake/acpi/tcss_xhci.asl +++ b/src/soc/intel/tigerlake/acpi/tcss_xhci.asl @@ -109,7 +109,7 @@ Method (_DSW, 3) */ Device (RHUB) { - Name (_ADR, Zero) + Name (_ADR, 0) /* High Speed Ports */ Device (HS01) diff --git a/src/soc/intel/tigerlake/acpi/xhci.asl b/src/soc/intel/tigerlake/acpi/xhci.asl index 4215185eb3..d321be7c89 100644 --- a/src/soc/intel/tigerlake/acpi/xhci.asl +++ b/src/soc/intel/tigerlake/acpi/xhci.asl @@ -28,7 +28,7 @@ Device (XHCI) /* Root Hub for Tigerlake-H PCH */ Device (RHUB) { - Name (_ADR, Zero) + Name (_ADR, 0) /* USB2 */ Device (HS01) { Name (_ADR, 1) } @@ -62,7 +62,7 @@ Device (XHCI) /* Root Hub for Tigerlake-LP PCH */ Device (RHUB) { - Name (_ADR, Zero) + Name (_ADR, 0) /* USB2 */ Device (HS01) { Name (_ADR, 1) } diff --git a/src/vendorcode/google/chromeos/acpi/amac.asl b/src/vendorcode/google/chromeos/acpi/amac.asl index 18b9f28382..e6f10aef0b 100644 --- a/src/vendorcode/google/chromeos/acpi/amac.asl +++ b/src/vendorcode/google/chromeos/acpi/amac.asl @@ -29,22 +29,22 @@ Scope (\_SB) /* Get "dock_passthrough" value from RW_VPD */ Local0 = \VPD.VPDF ("RW", "dock_passthrough") - Local1 = Zero + Local1 = 0 Switch (ToString (Local0)) { Case ("ethernet_mac0") { Local1 = \VPD.VPDF ("RO", "ethernet_mac0") } Case ("builtin") { - Return (Zero) + Return (0) } /* "dock_mac" or policy not found. */ Default { Local1 = \VPD.VPDF ("RO", "dock_mac") } } - If (Local1 == Zero) { - Return (Zero) + If (Local1 == 0) { + Return (0) } Printf ("MAC address returned from VPD: %o", Local1) @@ -52,7 +52,7 @@ Scope (\_SB) For (Local3 = 2, Local3 < 17, Local3 += 3) { If (ToString (DerefOf (Local1[Local3])) != ":") { Printf ("Invalid MAC address byte %o", Local3) - Return (Zero) + Return (0) } } |