diff options
Diffstat (limited to 'include/acpi/platform/acenv.h')
| -rw-r--r-- | include/acpi/platform/acenv.h | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/include/acpi/platform/acenv.h b/include/acpi/platform/acenv.h index e62f10d9a7d..c05aeba9e8f 100644 --- a/include/acpi/platform/acenv.h +++ b/include/acpi/platform/acenv.h @@ -5,7 +5,7 @@   *****************************************************************************/  /* - * Copyright (C) 2000 - 2008, Intel Corp. + * Copyright (C) 2000 - 2010, Intel Corp.   * All rights reserved.   *   * Redistribution and use in source and binary forms, with or without @@ -311,8 +311,8 @@ typedef char *va_list;  #define ACPI_MEMCMP(s1,s2,n)    acpi_ut_memcmp((const char *)(s1), (const char *)(s2), (acpi_size)(n))  #define ACPI_MEMCPY(d,s,n)      (void) acpi_ut_memcpy ((d), (s), (acpi_size)(n))  #define ACPI_MEMSET(d,v,n)      (void) acpi_ut_memset ((d), (v), (acpi_size)(n)) -#define ACPI_TOUPPER            acpi_ut_to_upper -#define ACPI_TOLOWER            acpi_ut_to_lower +#define ACPI_TOUPPER(c)         acpi_ut_to_upper ((int) (c)) +#define ACPI_TOLOWER(c)         acpi_ut_to_lower ((int) (c))  #endif				/* ACPI_USE_SYSTEM_CLIBRARY */  |