Messages in this thread Patch in this message |  | | Date | Mon, 12 May 2003 16:48:56 +0200 | Subject | [PATCH] TRIVIAL allow ME OS in os_acpi_name override. | From | Ducrot Bruno <> |
| |
OS Windows ME override for os_acpi_name need character ':' to be included.
Please apply.
--- linux/drivers/acpi/osl.c 2003/05/09 13:57:41 1.1 +++ linux/drivers/acpi/osl.c 2003/05/12 14:41:42 @@ -999,7 +999,7 @@ return 0; for (; count-- && str && *str; str++) { - if (isalnum(*str) || *str == ' ') + if (isalnum(*str) || *str == ' ' || *str == ':') *p++ = *str; else if (*str == '\'' || *str == '"') continue; -- Ducrot Bruno
-- Which is worse: ignorance or apathy? -- Don't know. Don't care. - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
|  |