summaryrefslogtreecommitdiffstats
path: root/sys/contrib/dev/acpica/rscalc.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/contrib/dev/acpica/rscalc.c')
-rw-r--r--sys/contrib/dev/acpica/rscalc.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/sys/contrib/dev/acpica/rscalc.c b/sys/contrib/dev/acpica/rscalc.c
index 5d2277a..f1aafce 100644
--- a/sys/contrib/dev/acpica/rscalc.c
+++ b/sys/contrib/dev/acpica/rscalc.c
@@ -1,7 +1,7 @@
/*******************************************************************************
*
* Module Name: rscalc - Calculate stream and list lengths
- * $Revision: 47 $
+ * $Revision: 48 $
*
******************************************************************************/
@@ -433,7 +433,7 @@ AcpiRsGetListLength (
Buffer = ByteStreamBuffer;
++Buffer;
- ACPI_MOVE_UNALIGNED16_TO_16 (&Temp16, Buffer);
+ ACPI_MOVE_16_TO_16 (&Temp16, Buffer);
BytesConsumed = Temp16 + 3;
/*
@@ -474,7 +474,7 @@ AcpiRsGetListLength (
Buffer = ByteStreamBuffer;
++Buffer;
- ACPI_MOVE_UNALIGNED16_TO_16 (&Temp16, Buffer);
+ ACPI_MOVE_16_TO_16 (&Temp16, Buffer);
BytesConsumed = Temp16 + 3;
@@ -514,7 +514,7 @@ AcpiRsGetListLength (
Buffer = ByteStreamBuffer;
++Buffer;
- ACPI_MOVE_UNALIGNED16_TO_16 (&Temp16, Buffer);
+ ACPI_MOVE_16_TO_16 (&Temp16, Buffer);
BytesConsumed = Temp16 + 3;
@@ -554,7 +554,7 @@ AcpiRsGetListLength (
Buffer = ByteStreamBuffer;
++Buffer;
- ACPI_MOVE_UNALIGNED16_TO_16 (&Temp16, Buffer);
+ ACPI_MOVE_16_TO_16 (&Temp16, Buffer);
BytesConsumed = Temp16 + 3;
@@ -594,7 +594,7 @@ AcpiRsGetListLength (
Buffer = ByteStreamBuffer;
++Buffer;
- ACPI_MOVE_UNALIGNED16_TO_16 (&Temp16, Buffer);
+ ACPI_MOVE_16_TO_16 (&Temp16, Buffer);
BytesConsumed = Temp16 + 3;
@@ -667,7 +667,7 @@ AcpiRsGetListLength (
/*
* Look at the number of bits set
*/
- ACPI_MOVE_UNALIGNED16_TO_16 (&Temp16, Buffer);
+ ACPI_MOVE_16_TO_16 (&Temp16, Buffer);
for (Index = 0; Index < 16; Index++)
{
OpenPOWER on IntegriCloud