mirror of
https://github.com/acpica/acpica/
synced 2025-01-25 10:52:02 +03:00
remove #elif, replace with #else #ifdef
date 2001.08.16.20.55.00; author agrover; state Exp;
This commit is contained in:
parent
6249072795
commit
6a568f2103
@ -1,7 +1,7 @@
|
||||
/******************************************************************************
|
||||
*
|
||||
* Name: acmacros.h - C macros for the entire subsystem.
|
||||
* $Revision: 1.85 $
|
||||
* $Revision: 1.86 $
|
||||
*
|
||||
*****************************************************************************/
|
||||
|
||||
@ -172,7 +172,8 @@
|
||||
#define ACPI_STORE_ADDRESS(a,b) {(a).Hi=0;(a).Lo=(b);}
|
||||
#define ACPI_VALID_ADDRESS(a) ((a).Hi | (a).Lo)
|
||||
|
||||
#elif ACPI_NO_INTEGER64_SUPPORT
|
||||
#else
|
||||
#ifdef ACPI_NO_INTEGER64_SUPPORT
|
||||
/*
|
||||
* ACPI_INTEGER is 32-bits, no 64-bit support on this platform
|
||||
*/
|
||||
@ -204,6 +205,7 @@
|
||||
#define ACPI_GET_ADDRESS(a) (a)
|
||||
#define ACPI_STORE_ADDRESS(a,b) ((a)=(b))
|
||||
#define ACPI_VALID_ADDRESS(a) (a)
|
||||
#endif
|
||||
#endif
|
||||
|
||||
/*
|
||||
|
Loading…
Reference in New Issue
Block a user