diff options
author | Bob Moore <robert.moore@intel.com> | 2011-11-16 14:59:17 +0800 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2012-01-17 03:36:31 -0500 |
commit | 7fce7a4b0db7d90db553faf568853d56cd908c39 (patch) | |
tree | 514593da0607dd1b5337522db6db06f2d17626fc /drivers/acpi/acpica/nsrepair2.c | |
parent | 0e243178047c0219b3367dd44f81040826b7ea83 (diff) | |
download | talos-obmc-linux-7fce7a4b0db7d90db553faf568853d56cd908c39.tar.gz talos-obmc-linux-7fce7a4b0db7d90db553faf568853d56cd908c39.zip |
ACPI 5.0: Add new predefined names
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Lin Ming <ming.m.lin@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'drivers/acpi/acpica/nsrepair2.c')
-rw-r--r-- | drivers/acpi/acpica/nsrepair2.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/acpi/acpica/nsrepair2.c b/drivers/acpi/acpica/nsrepair2.c index 024c4f263f87..3ee2b22a9f7d 100644 --- a/drivers/acpi/acpica/nsrepair2.c +++ b/drivers/acpi/acpica/nsrepair2.c @@ -467,11 +467,12 @@ acpi_ns_repair_HID(struct acpi_predefined_data *data, } /* - * Copy and uppercase the string. From the ACPI specification: + * Copy and uppercase the string. From the ACPI 5.0 specification: * * A valid PNP ID must be of the form "AAA####" where A is an uppercase * letter and # is a hex digit. A valid ACPI ID must be of the form - * "ACPI####" where # is a hex digit. + * "NNNN####" where N is an uppercase letter or decimal digit, and + * # is a hex digit. */ for (dest = new_string->string.pointer; *source; dest++, source++) { *dest = (char)ACPI_TOUPPER(*source); |