diff options
author | Jung-uk Kim <jkim@FreeBSD.org> | 2016-11-17 18:06:08 +0000 |
---|---|---|
committer | Jung-uk Kim <jkim@FreeBSD.org> | 2016-11-17 18:06:08 +0000 |
commit | a56e3c255d5c5dfa4dd3a2fda4705a1607a6b7f3 (patch) | |
tree | 830d95042126506cd52440fe9710bb4e6811cfde /source/components/parser/pstree.c | |
parent | 7600ac2283596bd000a29b9347e95346d3b740d7 (diff) |
Notes
Diffstat (limited to 'source/components/parser/pstree.c')
-rw-r--r-- | source/components/parser/pstree.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/source/components/parser/pstree.c b/source/components/parser/pstree.c index 729856982b64..0d6ab6373b6e 100644 --- a/source/components/parser/pstree.c +++ b/source/components/parser/pstree.c @@ -142,12 +142,12 @@ AcpiPsAppendArg ( const ACPI_OPCODE_INFO *OpInfo; - ACPI_FUNCTION_ENTRY (); + ACPI_FUNCTION_TRACE ("PsAppendArg"); if (!Op) { - return; + return_VOID; } /* Get the info structure for this opcode */ @@ -159,7 +159,7 @@ AcpiPsAppendArg ( ACPI_ERROR ((AE_INFO, "Invalid AML Opcode: 0x%2.2X", Op->Common.AmlOpcode)); - return; + return_VOID; } /* Check if this opcode requires argument sub-objects */ @@ -168,7 +168,7 @@ AcpiPsAppendArg ( { /* Has no linked argument objects */ - return; + return_VOID; } /* Append the argument to the linked argument list */ @@ -200,6 +200,8 @@ AcpiPsAppendArg ( Op->Common.ArgListLength++; } + + return_VOID; } |