From fa06bcba06c5842faae797629e9f72ec28d511c0 Mon Sep 17 00:00:00 2001 From: Felix Singer Date: Mon, 26 Dec 2022 09:32:47 +0100 Subject: mainboard/acpi: Replace constant "Zero" with actual number Change-Id: I4f2f02623b060ef0ebefc5aceb713c77a8b1e9a6 Signed-off-by: Felix Singer Reviewed-on: https://review.coreboot.org/c/coreboot/+/71523 Reviewed-by: Elyes Haouas Tested-by: build bot (Jenkins) Reviewed-by: Eric Lai --- .../variants/candy/include/variant/acpi/usb.asl | 40 +++++++++++----------- .../variants/squawks/include/variant/acpi/usb.asl | 28 +++++++-------- 2 files changed, 34 insertions(+), 34 deletions(-) (limited to 'src/mainboard/google/rambi/variants') diff --git a/src/mainboard/google/rambi/variants/candy/include/variant/acpi/usb.asl b/src/mainboard/google/rambi/variants/candy/include/variant/acpi/usb.asl index 5a9e1efa50..e40d435699 100644 --- a/src/mainboard/google/rambi/variants/candy/include/variant/acpi/usb.asl +++ b/src/mainboard/google/rambi/variants/candy/include/variant/acpi/usb.asl @@ -6,9 +6,9 @@ Scope (\_SB.PCI0.XHCI.RHUB.PRT1) Name (_UPC, Package (0x04) // _UPC: USB Port Capabilities { 0xFF, // Connectable - Zero, // USB Port - Zero, // Reserved - Zero // Reserved + 0, // USB Port + 0, // Reserved + 0 // Reserved }) // Visible @@ -24,14 +24,14 @@ Scope (\_SB.PCI0.XHCI.RHUB.PRT2) { 0xFF, // Connectable 0xFF, // OEM Connector - Zero, // Reserved - Zero // Reserved + 0, // Reserved + 0 // Reserved }) // Not Visible Method (_PLD, 0, NotSerialized) // _PLD: Physical Location of Device { - Return (GPLD (Zero)) + Return (GPLD (0)) } Device (USB1) @@ -42,9 +42,9 @@ Scope (\_SB.PCI0.XHCI.RHUB.PRT2) Name (_UPC, Package (0x04) // _UPC: USB Port Capabilities { 0xFF, // Connectable - Zero, // USB Port - Zero, // Reserved - Zero // Reserved + 0, // USB Port + 0, // Reserved + 0 // Reserved }) // Visible @@ -63,14 +63,14 @@ Scope (\_SB.PCI0.XHCI.RHUB.PRT2) { 0xFF, // Connectable 0xFF, // OEM Connector - Zero, // Reserved - Zero // Reserved + 0, // Reserved + 0 // Reserved }) // Not Visible Method (_PLD, 0, NotSerialized) // _PLD: Physical Location of Device { - Return (GPLD (Zero)) + Return (GPLD (0)) } } } @@ -81,14 +81,14 @@ Scope (\_SB.PCI0.XHCI.RHUB.PRT3) { 0xFF, // Connectable 0xFF, // OEM Connector - Zero, // Reserved - Zero // Reserved + 0, // Reserved + 0 // Reserved }) // Not Visible Method (_PLD, 0, NotSerialized) // _PLD: Physical Location of Device { - Return (GPLD (Zero)) + Return (GPLD (0)) } } Scope (\_SB.PCI0.XHCI.RHUB.PRT4) @@ -98,14 +98,14 @@ Scope (\_SB.PCI0.XHCI.RHUB.PRT4) { 0xFF, // Connectable 0xFF, // OEM Connector - Zero, // Reserved - Zero // Reserved + 0, // Reserved + 0 // Reserved }) // Not Visible Method (_PLD, 0, NotSerialized) // _PLD: Physical Location of Device { - Return (GPLD (Zero)) + Return (GPLD (0)) } } Scope (\_SB.PCI0.XHCI.RHUB.SSP1) @@ -115,7 +115,7 @@ Scope (\_SB.PCI0.XHCI.RHUB.SSP1) { 0xFF, // Connectable 0x03, // USB 3.0 Port - Zero, // Reserved - Zero // Reserved + 0, // Reserved + 0 // Reserved }) } diff --git a/src/mainboard/google/rambi/variants/squawks/include/variant/acpi/usb.asl b/src/mainboard/google/rambi/variants/squawks/include/variant/acpi/usb.asl index 888ca5b841..fd4236753c 100644 --- a/src/mainboard/google/rambi/variants/squawks/include/variant/acpi/usb.asl +++ b/src/mainboard/google/rambi/variants/squawks/include/variant/acpi/usb.asl @@ -6,9 +6,9 @@ Scope (\_SB.PCI0.XHCI.RHUB.PRT1) Name (_UPC, Package (0x04) // _UPC: USB Port Capabilities { 0xFF, // Connectable - Zero, // USB Port - Zero, // Reserved - Zero // Reserved + 0, // USB Port + 0, // Reserved + 0 // Reserved }) // Visible @@ -23,9 +23,9 @@ Scope (\_SB.PCI0.XHCI.RHUB.PRT2) Name (_UPC, Package (0x04) // _UPC: USB Port Capabilities { 0xFF, // Connectable - Zero, // USB Port - Zero, // Reserved - Zero // Reserved + 0, // USB Port + 0, // Reserved + 0 // Reserved }) // Visible @@ -41,14 +41,14 @@ Scope (\_SB.PCI0.XHCI.RHUB.PRT3) { 0xFF, // Connectable 0xFF, // OEM Connector - Zero, // Reserved - Zero // Reserved + 0, // Reserved + 0 // Reserved }) // Not Visible Method (_PLD, 0, NotSerialized) // _PLD: Physical Location of Device { - Return (GPLD (Zero)) + Return (GPLD (0)) } } Scope (\_SB.PCI0.XHCI.RHUB.PRT4) @@ -58,14 +58,14 @@ Scope (\_SB.PCI0.XHCI.RHUB.PRT4) { 0xFF, // Connectable 0xFF, // OEM Connector - Zero, // Reserved - Zero // Reserved + 0, // Reserved + 0 // Reserved }) // Not Visible Method (_PLD, 0, NotSerialized) // _PLD: Physical Location of Device { - Return (GPLD (Zero)) + Return (GPLD (0)) } } Scope (\_SB.PCI0.XHCI.RHUB.SSP1) @@ -75,7 +75,7 @@ Scope (\_SB.PCI0.XHCI.RHUB.SSP1) { 0xFF, // Connectable 0x03, // USB 3.0 Port - Zero, // Reserved - Zero // Reserved + 0, // Reserved + 0 // Reserved }) } -- cgit v1.2.3