iASL/Templates: Remove filename argument from DSDT and SSDT templates

This field is automatically derived from the input filename when
the template is compiled.

This makes it simpler to rename the ASL file as necessary.
This commit is contained in:
Robert Moore 2015-12-04 14:20:20 -08:00
parent 66e20c8777
commit 7a556fac92

View File

@ -120,7 +120,7 @@
/* Special templates for the ASL/AML tables: DSDT, SSDT, and OSDT */
const char TemplateDsdt[] =
"DefinitionBlock (\"dsdt.aml\", \"DSDT\", 2, \"Intel\", \"Template\", 0x00000001)\n"
"DefinitionBlock (\"\", \"DSDT\", 2, \"Intel\", \"Template\", 0x00000001)\n"
"{\n"
" Method (MAIN, 0, NotSerialized)\n"
" {\n"
@ -129,7 +129,7 @@ const char TemplateDsdt[] =
"}\n\n";
const char TemplateSsdt[] =
"DefinitionBlock (\"ssdt.aml\", \"SSDT\", 2, \"Intel\", \"Template\", 0x00000001)\n"
"DefinitionBlock (\"\", \"SSDT\", 2, \"Intel\", \"Template\", 0x00000001)\n"
"{\n"
" Method (MAIN, 0, NotSerialized)\n"
" {\n"
@ -138,7 +138,7 @@ const char TemplateSsdt[] =
"}\n\n";
const char TemplateOsdt[] =
"DefinitionBlock (\"osdt.aml\", \"OSDT\", 2, \"Intel\", \"Template\", 0x00000001)\n"
"DefinitionBlock (\"\", \"OSDT\", 2, \"Intel\", \"Template\", 0x00000001)\n"
"{\n"
" Method (MAIN, 0, NotSerialized)\n"
" {\n"