From 3783e06c339d361067b3b82e4c83df0106255f38 Mon Sep 17 00:00:00 2001 From: Felix Held Date: Fri, 14 Feb 2025 20:21:08 +0100 Subject: [PATCH] acpi/acpigen: fix typo in acpigen_write_if_lequal_op_op comment Change-Id: I2e4159e1e34560dacffbb6b9e392c2d2e2ad6887 Signed-off-by: Felix Held Reviewed-on: https://review.coreboot.org/c/coreboot/+/86463 Reviewed-by: Matt DeVillier Tested-by: build bot (Jenkins) --- src/acpi/acpigen.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/acpi/acpigen.c b/src/acpi/acpigen.c index 7d24b9e131..308cf5ac85 100644 --- a/src/acpi/acpigen.c +++ b/src/acpi/acpigen.c @@ -1586,7 +1586,7 @@ void acpigen_write_if_and(uint8_t arg1, uint8_t arg2) * Generates ACPI code for checking if operand1 and operand2 are equal. * Both operand1 and operand2 are ACPI ops. * - * If (Lequal (op,1 op2)) + * If (Lequal (op1, op2)) */ void acpigen_write_if_lequal_op_op(uint8_t op1, uint8_t op2) {