summaryrefslogtreecommitdiff
path: root/source/components/executer/exnames.c
diff options
context:
space:
mode:
Diffstat (limited to 'source/components/executer/exnames.c')
-rw-r--r--source/components/executer/exnames.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/source/components/executer/exnames.c b/source/components/executer/exnames.c
index 61a5bbd7d29c..f679de6550b0 100644
--- a/source/components/executer/exnames.c
+++ b/source/components/executer/exnames.c
@@ -160,6 +160,7 @@ AcpiExAllocateNameString (
return_PTR (NameString);
}
+
/*******************************************************************************
*
* FUNCTION: AcpiExNameSegment
@@ -189,8 +190,8 @@ AcpiExNameSegment (
/*
- * If first character is a digit, then we know that we aren't looking at a
- * valid name segment
+ * If first character is a digit, then we know that we aren't looking
+ * at a valid name segment
*/
CharBuf[0] = *AmlAddress;
@@ -394,7 +395,8 @@ AcpiExGetNameString (
AmlAddress++;
NumSegments = *AmlAddress;
- NameString = AcpiExAllocateNameString (PrefixCount, NumSegments);
+ NameString = AcpiExAllocateNameString (
+ PrefixCount, NumSegments);
if (!NameString)
{
Status = AE_NO_MEMORY;