mirror of
https://github.com/acpica/acpica/
synced 2025-02-20 23:44:12 +03:00
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:
parent
bbe255f246
commit
2d82041b29
@ -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)
|
||||
|
@ -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;
|
||||
|
@ -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);
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user