16-bit workaround

date	2002.05.03.20.19.00;	author rmoore1;	state Exp;
This commit is contained in:
aystarik 2005-06-29 17:45:02 +00:00
parent 37467b80a1
commit 0a586bdc9f

View File

@ -2,7 +2,7 @@
/******************************************************************************
*
* Module Name: exregion - ACPI default OpRegion (address space) handlers
* $Revision: 1.76 $
* $Revision: 1.77 $
*
*****************************************************************************/
@ -289,10 +289,11 @@ AcpiExSystemMemorySpaceHandler (
*Value = (ACPI_INTEGER) *((UINT32 *) LogicalAddrPtr);
break;
#ifndef _IA16
case 64:
*Value = (ACPI_INTEGER) *((UINT64 *) LogicalAddrPtr);
break;
#endif
default:
/* BitWidth was already validated */
break;
@ -315,9 +316,11 @@ AcpiExSystemMemorySpaceHandler (
*(UINT32 *) LogicalAddrPtr = (UINT32) *Value;
break;
#ifndef _IA16
case 64:
*(UINT64 *) LogicalAddrPtr = (UINT64) *Value;
break;
#endif
default:
/* BitWidth was already validated */