aboutsummaryrefslogtreecommitdiffstats
path: root/include/acpi/acmacros.h
diff options
context:
space:
mode:
authorBob Moore <robert.moore@intel.com>2007-02-02 19:48:23 +0300
committerLen Brown <len.brown@intel.com>2007-02-02 21:14:30 -0500
commit987c21a0b0081d480ec3cd04875509cdc10e15e7 (patch)
treeb28184ede836dff32f61b2895e3fa584629e018a /include/acpi/acmacros.h
parentACPICA: Ensure that all structures in acobject.h are aligned, via #pragma. (diff)
downloadlinux-dev-987c21a0b0081d480ec3cd04875509cdc10e15e7.tar.xz
linux-dev-987c21a0b0081d480ec3cd04875509cdc10e15e7.zip
ACPICA: Add ACPI_MAX macro
Signed-off-by: Alexey Starikovskiy <alexey.y.starikovskiy@intel.com> Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to '')
-rw-r--r--include/acpi/acmacros.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/acpi/acmacros.h b/include/acpi/acmacros.h
index 192fa095a515..9b2e4d7154a4 100644
--- a/include/acpi/acmacros.h
+++ b/include/acpi/acmacros.h
@@ -55,6 +55,7 @@
#define ACPI_SET_BIT(target,bit) ((target) |= (bit))
#define ACPI_CLEAR_BIT(target,bit) ((target) &= ~(bit))
#define ACPI_MIN(a,b) (((a)<(b))?(a):(b))
+#define ACPI_MAX(a,b) (((a)>(b))?(a):(b))
/* Size calculation */