From b34f5f8dfcfcb0a7ad51089b052a1632706045e7 Mon Sep 17 00:00:00 2001 Message-Id: In-Reply-To: <410c2f0190f74c35505beda6ff3f2da7819f8bac.1164352285.git.len.brown@intel.com> References: <410c2f0190f74c35505beda6ff3f2da7819f8bac.1164352285.git.len.brown@intel.com> From: Robert Moore Date: Tue, 14 Nov 2006 20:10:23 +0300 Subject: [PATCH 62/65] ACPICA: Add ACPI_MAX macro Reply-To: Len Brown Organization: Intel Open Source Technology Center Signed-off-by: Alexey Starikovskiy Signed-off-by: Len Brown --- include/acpi/acmacros.h | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/include/acpi/acmacros.h b/include/acpi/acmacros.h index 192fa09..9b2e4d7 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 */ -- 1.4.4.1