acpi/acpigen: fix typo in acpigen_write_if_lequal_op_op comment

Change-Id: I2e4159e1e34560dacffbb6b9e392c2d2e2ad6887
Signed-off-by: Felix Held <felix-coreboot@felixheld.de>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/86463
Reviewed-by: Matt DeVillier <matt.devillier@gmail.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
Felix Held 2025-02-14 20:21:08 +01:00 committed by Matt DeVillier
commit 3783e06c33

View file

@ -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)
{