aboutsummaryrefslogtreecommitdiff
path: root/compiler/dttable.c
diff options
context:
space:
mode:
Diffstat (limited to 'compiler/dttable.c')
-rw-r--r--compiler/dttable.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/compiler/dttable.c b/compiler/dttable.c
index bfdf29ed7068..d6baa5350192 100644
--- a/compiler/dttable.c
+++ b/compiler/dttable.c
@@ -5,7 +5,7 @@
*****************************************************************************/
/*
- * Copyright (C) 2000 - 2011, Intel Corp.
+ * Copyright (C) 2000 - 2012, Intel Corp.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
@@ -1822,7 +1822,9 @@ DtGetGenericTableInfo (
break;
}
- if (!ACPI_STRCMP (Name, Info->Name))
+ /* Use caseless compare for generic keywords */
+
+ if (!AcpiUtStricmp (Name, Info->Name))
{
break;
}