Skip to content

Commit

Permalink
ACPICA: Add ACPI_MAX macro
Browse files Browse the repository at this point in the history
Signed-off-by: Alexey Starikovskiy <alexey.y.starikovskiy@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
  • Loading branch information
Bob Moore authored and Len Brown committed Feb 3, 2007
1 parent 7c9626b commit 987c21a
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions include/acpi/acmacros.h
Original file line number Diff line number Diff line change
Expand Up @@ -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 */

Expand Down

0 comments on commit 987c21a

Please sign in to comment.