summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Moore <Robert.Moore@intel.com>2012-09-21 13:45:48 -0700
committerRobert Moore <Robert.Moore@intel.com>2012-09-21 13:45:48 -0700
commitc0b396e9a2cff656d7f5ca2510af52e9b31ec37f (patch)
tree08745f3234504eef8434f2ff45bff96560f36ac1
parentf4dbc0287ace6b94594436807a12c5ed43fcfbf2 (diff)
iASL/Tools: Cleanup empty lines at file start and end.
Maintenance for source code consistency.
-rw-r--r--source/compiler/aslcodegen.c1
-rw-r--r--source/compiler/aslcompile.c1
-rw-r--r--source/compiler/aslcompiler.h2
-rw-r--r--source/compiler/asldefine.h2
-rw-r--r--source/compiler/aslerror.c1
-rw-r--r--source/compiler/aslfiles.c1
-rw-r--r--source/compiler/aslfold.c1
-rw-r--r--source/compiler/aslglobal.h3
-rw-r--r--source/compiler/asllength.c1
-rw-r--r--source/compiler/asllisting.c1
-rw-r--r--source/compiler/aslmain.c1
-rw-r--r--source/compiler/aslmap.c1
-rw-r--r--source/compiler/aslmessages.h1
-rw-r--r--source/compiler/aslopcodes.c1
-rw-r--r--source/compiler/asloperands.c1
-rw-r--r--source/compiler/aslresource.c1
-rw-r--r--source/compiler/aslrestype1.c1
-rw-r--r--source/compiler/aslrestype1i.c1
-rw-r--r--source/compiler/aslrestype2d.c1
-rw-r--r--source/compiler/aslrestype2e.c1
-rw-r--r--source/compiler/aslrestype2q.c1
-rw-r--r--source/compiler/aslrestype2w.c1
-rw-r--r--source/compiler/aslstartup.c1
-rw-r--r--source/compiler/aslstubs.c1
-rw-r--r--source/compiler/aslsupport.l1
-rw-r--r--source/compiler/asltransform.c1
-rw-r--r--source/compiler/asltree.c1
-rw-r--r--source/compiler/asltypes.h1
-rw-r--r--source/compiler/aslutils.c1
-rw-r--r--source/tools/acpibin/abcompare.c1
-rw-r--r--source/tools/acpibin/abmain.c1
-rw-r--r--source/tools/acpibin/acpibin.h2
-rw-r--r--source/tools/acpiexec/aecommon.h1
-rw-r--r--source/tools/acpinames/acpinames.h1
-rwxr-xr-xtests/aapits/asl/dsdt.asl1
-rwxr-xr-xtests/aapits/asl/init0066.asl1
-rwxr-xr-xtests/aapits/asl/tblm0037.asl1
-rwxr-xr-xtests/aapits/asl/tblm0047.asl1
-rwxr-xr-xtests/aapits/asl/tblm0058.asl1
-rwxr-xr-xtests/aapits/asl/tblm_aux.asl1
-rw-r--r--tests/aapits/atcommon.h1
-rw-r--r--tests/aapits/atexec.c1
-rw-r--r--tests/aapits/atinit.c1
-rw-r--r--tests/aapits/atosxfctrl.c1
-rw-r--r--tests/aapits/atosxfctrl.h1
-rw-r--r--tests/aapits/atosxfwrap.c2
-rw-r--r--tests/aapits/atosxfwrap.h1
47 files changed, 0 insertions, 53 deletions
diff --git a/source/compiler/aslcodegen.c b/source/compiler/aslcodegen.c
index be559c3d9..b3129cffd 100644
--- a/source/compiler/aslcodegen.c
+++ b/source/compiler/aslcodegen.c
@@ -1,4 +1,3 @@
-
/******************************************************************************
*
* Module Name: aslcodegen - AML code generation
diff --git a/source/compiler/aslcompile.c b/source/compiler/aslcompile.c
index b4295283d..6bcb212fa 100644
--- a/source/compiler/aslcompile.c
+++ b/source/compiler/aslcompile.c
@@ -1,4 +1,3 @@
-
/******************************************************************************
*
* Module Name: aslcompile - top level compile module
diff --git a/source/compiler/aslcompiler.h b/source/compiler/aslcompiler.h
index a58d051a4..971662519 100644
--- a/source/compiler/aslcompiler.h
+++ b/source/compiler/aslcompiler.h
@@ -1,4 +1,3 @@
-
/******************************************************************************
*
* Module Name: aslcompiler.h - common include file for iASL
@@ -1200,4 +1199,3 @@ DtCreateTemplates (
char *Signature);
#endif /* __ASLCOMPILER_H */
-
diff --git a/source/compiler/asldefine.h b/source/compiler/asldefine.h
index 146ab6d9a..a35456d4c 100644
--- a/source/compiler/asldefine.h
+++ b/source/compiler/asldefine.h
@@ -1,4 +1,3 @@
-
/******************************************************************************
*
* Module Name: asldefine.h - Common defines for the iASL compiler
@@ -246,4 +245,3 @@
RsCreateResourceField (Op, Name, ByteOffset, 0, 64);
#endif /* ASLDEFINE.H */
-
diff --git a/source/compiler/aslerror.c b/source/compiler/aslerror.c
index 6a9d12a4f..d4d4f1a52 100644
--- a/source/compiler/aslerror.c
+++ b/source/compiler/aslerror.c
@@ -1,4 +1,3 @@
-
/******************************************************************************
*
* Module Name: aslerror - Error handling and statistics
diff --git a/source/compiler/aslfiles.c b/source/compiler/aslfiles.c
index 5e8f19ad6..d5e91bfc8 100644
--- a/source/compiler/aslfiles.c
+++ b/source/compiler/aslfiles.c
@@ -1,4 +1,3 @@
-
/******************************************************************************
*
* Module Name: aslfiles - file I/O suppoert
diff --git a/source/compiler/aslfold.c b/source/compiler/aslfold.c
index e5279751d..5951f2c94 100644
--- a/source/compiler/aslfold.c
+++ b/source/compiler/aslfold.c
@@ -1,4 +1,3 @@
-
/******************************************************************************
*
* Module Name: aslfold - Constant folding
diff --git a/source/compiler/aslglobal.h b/source/compiler/aslglobal.h
index 6cc6670c0..5fe37f2fd 100644
--- a/source/compiler/aslglobal.h
+++ b/source/compiler/aslglobal.h
@@ -1,5 +1,3 @@
-
-
/******************************************************************************
*
* Module Name: aslglobal.h - Global variable definitions
@@ -326,4 +324,3 @@ ASL_EXTERN char StringBuffer2[ASL_MSG_BUFFER_SIZE];
#endif /* __ASLGLOBAL_H */
-
diff --git a/source/compiler/asllength.c b/source/compiler/asllength.c
index f548c5479..07f6e8d2e 100644
--- a/source/compiler/asllength.c
+++ b/source/compiler/asllength.c
@@ -1,4 +1,3 @@
-
/******************************************************************************
*
* Module Name: asllength - Tree walk to determine package and opcode lengths
diff --git a/source/compiler/asllisting.c b/source/compiler/asllisting.c
index b671ebf17..6db679cf2 100644
--- a/source/compiler/asllisting.c
+++ b/source/compiler/asllisting.c
@@ -1,4 +1,3 @@
-
/******************************************************************************
*
* Module Name: asllisting - Listing file generation
diff --git a/source/compiler/aslmain.c b/source/compiler/aslmain.c
index 2a0ac3f3c..35bb22bc5 100644
--- a/source/compiler/aslmain.c
+++ b/source/compiler/aslmain.c
@@ -1,4 +1,3 @@
-
/******************************************************************************
*
* Module Name: aslmain - compiler main and utilities
diff --git a/source/compiler/aslmap.c b/source/compiler/aslmap.c
index 920eb234d..92f01ce8e 100644
--- a/source/compiler/aslmap.c
+++ b/source/compiler/aslmap.c
@@ -1,4 +1,3 @@
-
/******************************************************************************
*
* Module Name: aslmap - parser to AML opcode mapping table
diff --git a/source/compiler/aslmessages.h b/source/compiler/aslmessages.h
index 20f3e7fc3..49bb22423 100644
--- a/source/compiler/aslmessages.h
+++ b/source/compiler/aslmessages.h
@@ -1,4 +1,3 @@
-
/******************************************************************************
*
* Module Name: aslmessages.h - Compiler error/warning messages
diff --git a/source/compiler/aslopcodes.c b/source/compiler/aslopcodes.c
index 6d4ae08f6..baddce849 100644
--- a/source/compiler/aslopcodes.c
+++ b/source/compiler/aslopcodes.c
@@ -1,4 +1,3 @@
-
/******************************************************************************
*
* Module Name: aslopcode - AML opcode generation
diff --git a/source/compiler/asloperands.c b/source/compiler/asloperands.c
index 7897d03d3..be1320aa9 100644
--- a/source/compiler/asloperands.c
+++ b/source/compiler/asloperands.c
@@ -1,4 +1,3 @@
-
/******************************************************************************
*
* Module Name: asloperands - AML operand processing
diff --git a/source/compiler/aslresource.c b/source/compiler/aslresource.c
index 9977f0d19..5ce6d1eb2 100644
--- a/source/compiler/aslresource.c
+++ b/source/compiler/aslresource.c
@@ -1,4 +1,3 @@
-
/******************************************************************************
*
* Module Name: aslresource - Resource template/descriptor utilities
diff --git a/source/compiler/aslrestype1.c b/source/compiler/aslrestype1.c
index a46a61f68..3597f538c 100644
--- a/source/compiler/aslrestype1.c
+++ b/source/compiler/aslrestype1.c
@@ -1,4 +1,3 @@
-
/******************************************************************************
*
* Module Name: aslrestype1 - Miscellaneous small resource descriptors
diff --git a/source/compiler/aslrestype1i.c b/source/compiler/aslrestype1i.c
index 8335e8f2f..1a660d6d2 100644
--- a/source/compiler/aslrestype1i.c
+++ b/source/compiler/aslrestype1i.c
@@ -1,4 +1,3 @@
-
/******************************************************************************
*
* Module Name: aslrestype1i - Small I/O-related resource descriptors
diff --git a/source/compiler/aslrestype2d.c b/source/compiler/aslrestype2d.c
index 1ca0f2dc9..1acc59da9 100644
--- a/source/compiler/aslrestype2d.c
+++ b/source/compiler/aslrestype2d.c
@@ -1,4 +1,3 @@
-
/******************************************************************************
*
* Module Name: aslrestype2d - Large DWord address resource descriptors
diff --git a/source/compiler/aslrestype2e.c b/source/compiler/aslrestype2e.c
index e5fff47bb..0d2d7c3c0 100644
--- a/source/compiler/aslrestype2e.c
+++ b/source/compiler/aslrestype2e.c
@@ -1,4 +1,3 @@
-
/******************************************************************************
*
* Module Name: aslrestype2e - Large Extended address resource descriptors
diff --git a/source/compiler/aslrestype2q.c b/source/compiler/aslrestype2q.c
index 65c242a00..65cdd39b3 100644
--- a/source/compiler/aslrestype2q.c
+++ b/source/compiler/aslrestype2q.c
@@ -1,4 +1,3 @@
-
/******************************************************************************
*
* Module Name: aslrestype2q - Large QWord address resource descriptors
diff --git a/source/compiler/aslrestype2w.c b/source/compiler/aslrestype2w.c
index 79d7bccd3..6c9a7d097 100644
--- a/source/compiler/aslrestype2w.c
+++ b/source/compiler/aslrestype2w.c
@@ -1,4 +1,3 @@
-
/******************************************************************************
*
* Module Name: aslrestype2w - Large Word address resource descriptors
diff --git a/source/compiler/aslstartup.c b/source/compiler/aslstartup.c
index a2dbac63b..cfa9ae405 100644
--- a/source/compiler/aslstartup.c
+++ b/source/compiler/aslstartup.c
@@ -1,4 +1,3 @@
-
/******************************************************************************
*
* Module Name: aslstartup - Compiler startup routines, called from main
diff --git a/source/compiler/aslstubs.c b/source/compiler/aslstubs.c
index 08726a6f8..0e76fd663 100644
--- a/source/compiler/aslstubs.c
+++ b/source/compiler/aslstubs.c
@@ -1,4 +1,3 @@
-
/******************************************************************************
*
* Module Name: aslstubs - Stubs used to link to Aml interpreter
diff --git a/source/compiler/aslsupport.l b/source/compiler/aslsupport.l
index fbf50bd30..40294ad2e 100644
--- a/source/compiler/aslsupport.l
+++ b/source/compiler/aslsupport.l
@@ -1,4 +1,3 @@
-
/******************************************************************************
*
* Module Name: aslsupport.l - Flex/lex scanner C support routines.
diff --git a/source/compiler/asltransform.c b/source/compiler/asltransform.c
index e4dd3961e..e65668811 100644
--- a/source/compiler/asltransform.c
+++ b/source/compiler/asltransform.c
@@ -1,4 +1,3 @@
-
/******************************************************************************
*
* Module Name: asltransform - Parse tree transforms
diff --git a/source/compiler/asltree.c b/source/compiler/asltree.c
index 9aafdc201..fd3c7e384 100644
--- a/source/compiler/asltree.c
+++ b/source/compiler/asltree.c
@@ -1,4 +1,3 @@
-
/******************************************************************************
*
* Module Name: asltree - parse tree management
diff --git a/source/compiler/asltypes.h b/source/compiler/asltypes.h
index a61b9219b..17de0cb16 100644
--- a/source/compiler/asltypes.h
+++ b/source/compiler/asltypes.h
@@ -1,4 +1,3 @@
-
/******************************************************************************
*
* Module Name: asltypes.h - compiler data types and struct definitions
diff --git a/source/compiler/aslutils.c b/source/compiler/aslutils.c
index b34be1a68..3c8e8e610 100644
--- a/source/compiler/aslutils.c
+++ b/source/compiler/aslutils.c
@@ -1,4 +1,3 @@
-
/******************************************************************************
*
* Module Name: aslutils -- compiler utilities
diff --git a/source/tools/acpibin/abcompare.c b/source/tools/acpibin/abcompare.c
index da7d93765..294ad1679 100644
--- a/source/tools/acpibin/abcompare.c
+++ b/source/tools/acpibin/abcompare.c
@@ -1,4 +1,3 @@
-
/******************************************************************************
*
* Module Name: abcompare - compare AML files
diff --git a/source/tools/acpibin/abmain.c b/source/tools/acpibin/abmain.c
index 6516e76f3..74013c317 100644
--- a/source/tools/acpibin/abmain.c
+++ b/source/tools/acpibin/abmain.c
@@ -1,4 +1,3 @@
-
/******************************************************************************
*
* Module Name: abmain - Main module for the acpi binary utility
diff --git a/source/tools/acpibin/acpibin.h b/source/tools/acpibin/acpibin.h
index ebfaf70a4..6f4b5c265 100644
--- a/source/tools/acpibin/acpibin.h
+++ b/source/tools/acpibin/acpibin.h
@@ -1,4 +1,3 @@
-
/******************************************************************************
*
* Module Name: acpibinh - Include file for AcpiBin utility
@@ -182,4 +181,3 @@ AbComputeChecksum (
void
AbDisplayHeader (
char *File1Path);
-
diff --git a/source/tools/acpiexec/aecommon.h b/source/tools/acpiexec/aecommon.h
index 0f5f789c9..f4ef9a937 100644
--- a/source/tools/acpiexec/aecommon.h
+++ b/source/tools/acpiexec/aecommon.h
@@ -269,4 +269,3 @@ AeGlobalEventHandler (
void *Context);
#endif /* _AECOMMON */
-
diff --git a/source/tools/acpinames/acpinames.h b/source/tools/acpinames/acpinames.h
index 138495f97..a8aed9689 100644
--- a/source/tools/acpinames/acpinames.h
+++ b/source/tools/acpinames/acpinames.h
@@ -126,4 +126,3 @@
#define ACPI_MAX_INIT_TABLES (32)
#endif
-
diff --git a/tests/aapits/asl/dsdt.asl b/tests/aapits/asl/dsdt.asl
index 08d9ef4dd..9b02faa79 100755
--- a/tests/aapits/asl/dsdt.asl
+++ b/tests/aapits/asl/dsdt.asl
@@ -8048,4 +8048,3 @@ DefinitionBlock ("dsdt.aml", "DSDT", 1, "INTEL ", "CALISTGA", 0x06040000)
}
}
}
-
diff --git a/tests/aapits/asl/init0066.asl b/tests/aapits/asl/init0066.asl
index 2ce1a6ff9..4c6e2a4f0 100755
--- a/tests/aapits/asl/init0066.asl
+++ b/tests/aapits/asl/init0066.asl
@@ -1,4 +1,3 @@
-
DefinitionBlock(
"init0066.aml", // Output filename
"DSDT", // Signature
diff --git a/tests/aapits/asl/tblm0037.asl b/tests/aapits/asl/tblm0037.asl
index 2649399d1..072f69431 100755
--- a/tests/aapits/asl/tblm0037.asl
+++ b/tests/aapits/asl/tblm0037.asl
@@ -1,4 +1,3 @@
-
DefinitionBlock(
"tblm0037.aml", // Output filename
"DSDT", // Signature
diff --git a/tests/aapits/asl/tblm0047.asl b/tests/aapits/asl/tblm0047.asl
index 7ed365f7c..34fe126a9 100755
--- a/tests/aapits/asl/tblm0047.asl
+++ b/tests/aapits/asl/tblm0047.asl
@@ -1,4 +1,3 @@
-
DefinitionBlock(
"tblm0047.aml", // Output filename
"DSDT", // Signature
diff --git a/tests/aapits/asl/tblm0058.asl b/tests/aapits/asl/tblm0058.asl
index e77e27133..f09bea145 100755
--- a/tests/aapits/asl/tblm0058.asl
+++ b/tests/aapits/asl/tblm0058.asl
@@ -1,4 +1,3 @@
-
DefinitionBlock(
"tblm0058.aml", // Output filename
"DSDT", // Signature
diff --git a/tests/aapits/asl/tblm_aux.asl b/tests/aapits/asl/tblm_aux.asl
index 3e8418064..e14e4d3d9 100755
--- a/tests/aapits/asl/tblm_aux.asl
+++ b/tests/aapits/asl/tblm_aux.asl
@@ -1,4 +1,3 @@
-
/*
* ACPICA API Test Suite.
* Support for testing of invalid handle processing.
diff --git a/tests/aapits/atcommon.h b/tests/aapits/atcommon.h
index 35f77e269..760298b8c 100644
--- a/tests/aapits/atcommon.h
+++ b/tests/aapits/atcommon.h
@@ -397,4 +397,3 @@ AtAuxiliarySsdt(
UINT32 Action);
#endif /* _ATCOMMON */
-
diff --git a/tests/aapits/atexec.c b/tests/aapits/atexec.c
index 593d6a06b..909770c24 100644
--- a/tests/aapits/atexec.c
+++ b/tests/aapits/atexec.c
@@ -2006,4 +2006,3 @@ AtAuxiliarySsdt(
}
return (Status);
}
-
diff --git a/tests/aapits/atinit.c b/tests/aapits/atinit.c
index 499664080..ef71cb20a 100644
--- a/tests/aapits/atinit.c
+++ b/tests/aapits/atinit.c
@@ -4317,4 +4317,3 @@ AtInitTest0066(void)
return (AE_OK);
}
-
diff --git a/tests/aapits/atosxfctrl.c b/tests/aapits/atosxfctrl.c
index 26c51b07d..84f3fcbc2 100644
--- a/tests/aapits/atosxfctrl.c
+++ b/tests/aapits/atosxfctrl.c
@@ -1,4 +1,3 @@
-
#include <stdio.h>
#include <string.h>
diff --git a/tests/aapits/atosxfctrl.h b/tests/aapits/atosxfctrl.h
index 80fa25056..1ec021f14 100644
--- a/tests/aapits/atosxfctrl.h
+++ b/tests/aapits/atosxfctrl.h
@@ -398,4 +398,3 @@ OsxfCtrlRetError(
ACPI_OSXF OsxfNum);
#endif /* _ATOSXFCTRL */
-
diff --git a/tests/aapits/atosxfwrap.c b/tests/aapits/atosxfwrap.c
index 842842324..2d580700f 100644
--- a/tests/aapits/atosxfwrap.c
+++ b/tests/aapits/atosxfwrap.c
@@ -1272,5 +1272,3 @@ AcpiOsSignal (
return (Status);
}
-
-
diff --git a/tests/aapits/atosxfwrap.h b/tests/aapits/atosxfwrap.h
index b62c0d554..7a24be3f2 100644
--- a/tests/aapits/atosxfwrap.h
+++ b/tests/aapits/atosxfwrap.h
@@ -340,4 +340,3 @@ AcpiOsActualDbgAssert(
char *Message);
#endif /* _AT_OSXF_WRAP */
-