80dc240519
This is an automated DistroBaker update from upstream sources. If you do not know what this is about or would like to opt out, contact the OSCI team. Source: https://src.fedoraproject.org/rpms/acpica-tools.git#defe2b64332fc44bf9915c8f57d2614c529cdb43
22 lines
1.0 KiB
Diff
22 lines
1.0 KiB
Diff
Index: acpica-unix2-20200925/source/include/acmacros.h
|
|
===================================================================
|
|
--- acpica-unix2-20200925.orig/source/include/acmacros.h
|
|
+++ acpica-unix2-20200925/source/include/acmacros.h
|
|
@@ -163,6 +163,8 @@
|
|
|
|
/* 16-bit source, 16/32/64 destination */
|
|
|
|
+#define ACPI_MOVE_16_TO_8(d, s) {(( UINT8 *)(void *)(d))[0] = ((UINT8 *)(void *)(s))[0];}
|
|
+
|
|
#define ACPI_MOVE_16_TO_16(d, s) {(( UINT8 *)(void *)(d))[0] = ((UINT8 *)(void *)(s))[0];\
|
|
(( UINT8 *)(void *)(d))[1] = ((UINT8 *)(void *)(s))[1];}
|
|
|
|
@@ -182,6 +184,7 @@
|
|
|
|
/* 64-bit source, 16/32/64 destination */
|
|
|
|
+#define ACPI_MOVE_64_TO_8(d, s) ACPI_MOVE_16_TO_8(d, s) /* Truncate to 8 */
|
|
#define ACPI_MOVE_64_TO_16(d, s) ACPI_MOVE_16_TO_16(d, s) /* Truncate to 16 */
|
|
#define ACPI_MOVE_64_TO_32(d, s) ACPI_MOVE_32_TO_32(d, s) /* Truncate to 32 */
|
|
#define ACPI_MOVE_64_TO_64(d, s) {(( UINT8 *)(void *)(d))[0] = ((UINT8 *)(void *)(s))[0];\
|