summaryrefslogtreecommitdiff
path: root/source/tools/acpisrc/asremove.c
diff options
context:
space:
mode:
authorJung-uk Kim <jkim@FreeBSD.org>2012-10-19 18:47:57 +0000
committerJung-uk Kim <jkim@FreeBSD.org>2012-10-19 18:47:57 +0000
commit31aa864e8c068201d58aad3a8f82ddb51df11015 (patch)
tree5e268c18ae0fa3ec73e13e2af60a3be57d8393ec /source/tools/acpisrc/asremove.c
parentebef5c959a0ea58fa05c4a5a80bb93104780bf87 (diff)
Notes
Diffstat (limited to 'source/tools/acpisrc/asremove.c')
-rw-r--r--source/tools/acpisrc/asremove.c13
1 files changed, 5 insertions, 8 deletions
diff --git a/source/tools/acpisrc/asremove.c b/source/tools/acpisrc/asremove.c
index 8fe29e158a2a..54da0af0b191 100644
--- a/source/tools/acpisrc/asremove.c
+++ b/source/tools/acpisrc/asremove.c
@@ -1,4 +1,3 @@
-
/******************************************************************************
*
* Module Name: asremove - Source conversion - removal functions
@@ -59,7 +58,7 @@ AsRemoveStatement (
*
* DESCRIPTION: Remove all statements that contain the given keyword.
* Limitations: Removes text from the start of the line that
- * contains the keyword to the next semicolon. Currently
+ * contains the keyword to the next semicolon. Currently
* doesn't ignore comments.
*
******************************************************************************/
@@ -297,7 +296,7 @@ AsRemoveConditionalCompile (
*
* FUNCTION: AsRemoveMacro
*
- * DESCRIPTION: Remove every line that contains the keyword. Does not
+ * DESCRIPTION: Remove every line that contains the keyword. Does not
* skip comments.
*
******************************************************************************/
@@ -368,7 +367,7 @@ AsRemoveMacro (
*
* FUNCTION: AsRemoveLine
*
- * DESCRIPTION: Remove every line that contains the keyword. Does not
+ * DESCRIPTION: Remove every line that contains the keyword. Does not
* skip comments.
*
******************************************************************************/
@@ -459,7 +458,7 @@ AsReduceTypedefs (
}
SubString++;
- /* Find the closing brace. Handles nested braces */
+ /* Find the closing brace. Handles nested braces */
NestLevel = 1;
while (*SubString)
@@ -505,7 +504,7 @@ AsReduceTypedefs (
*
* FUNCTION: AsRemoveEmptyBlocks
*
- * DESCRIPTION: Remove any C blocks (e.g., if {}) that contain no code. This
+ * DESCRIPTION: Remove any C blocks (e.g., if {}) that contain no code. This
* can happen as a result of removing lines such as DEBUG_PRINT.
*
******************************************************************************/
@@ -612,5 +611,3 @@ AsRemoveDebugMacros (
AsReplaceString ("return_acpi_status", "return", REPLACE_WHOLE_WORD, Buffer);
AsReplaceString ("return_VALUE", "return", REPLACE_WHOLE_WORD, Buffer);
}
-
-