From 24fd54401daf8fb6669aa843f46b2c27a373b08c Mon Sep 17 00:00:00 2001 From: Rob Bradford Date: Wed, 3 Nov 2021 14:29:05 +0000 Subject: [PATCH] acpi_tables: aml: Implement Aml::append_aml_bytes() for Release Signed-off-by: Rob Bradford --- acpi_tables/src/aml.rs | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/acpi_tables/src/aml.rs b/acpi_tables/src/aml.rs index 16b9b1bc2..e7869eb08 100644 --- a/acpi_tables/src/aml.rs +++ b/acpi_tables/src/aml.rs @@ -927,11 +927,10 @@ impl Release { } impl Aml for Release { - fn to_aml_bytes(&self) -> Vec { - let mut bytes = vec![0x5b]; /* ExtOpPrefix */ + fn append_aml_bytes(&self, bytes: &mut Vec) { + bytes.push(0x5b); /* ExtOpPrefix */ bytes.push(0x27); /* ReleaseOp */ - bytes.extend_from_slice(&self.mutex.to_aml_bytes()); - bytes + self.mutex.append_aml_bytes(bytes); } }