Remove some extraneous newlines in ACPI_ERROR type calls..

These macros/functions automatically insert a newline, so the format
string should not contain a newline at the end. (This allows these
functions to add information to the end of the output line.)
This commit is contained in:
Robert Moore 2013-01-16 09:16:22 -08:00
parent bbe255f246
commit 2d82041b29
3 changed files with 3 additions and 3 deletions

View File

@ -613,7 +613,7 @@ AcpiDsBuildInternalPackageObj (
}
ACPI_INFO ((AE_INFO,
"Actual Package length (%u) is larger than NumElements field (%u), truncated\n",
"Actual Package length (%u) is larger than NumElements field (%u), truncated",
i, ElementCount));
}
else if (i < ElementCount)

View File

@ -308,7 +308,7 @@ AcpiDsLoad2BeginOp (
*/
ACPI_WARNING ((AE_INFO,
"Type override - [%4.4s] had invalid type (%s) "
"for Scope operator, changed to type ANY\n",
"for Scope operator, changed to type ANY",
AcpiUtGetNodeName (Node), AcpiUtGetTypeName (Node->Type)));
Node->Type = ACPI_TYPE_ANY;

View File

@ -222,7 +222,7 @@ AcpiHwLowSetGpe (
break;
default:
ACPI_ERROR ((AE_INFO, "Invalid GPE Action, %u\n", Action));
ACPI_ERROR ((AE_INFO, "Invalid GPE Action, %u", Action));
return (AE_BAD_PARAMETER);
}