pci-header.awk: remove unused variable.

Signed-off-by: Adrien Destugues <pulkomandy@pulkomandy.tk>

Fixes #12919
This commit is contained in:
Murai Takashi 2016-08-18 19:58:06 +09:00 committed by Adrien Destugues
parent 4d67c6d9cf
commit a1de0f035b
1 changed files with 1 additions and 1 deletions

View File

@ -130,7 +130,7 @@ END {
if ( devicecount > 0 ) {
print "typedef struct _PCI_DEVTABLE\n{\n\tunsigned short VenId ;\n\tunsigned short DevId ;\n\tunsigned short\tSubVenId ;\n\tunsigned short\tSubDevId ;\n\tconst char *\tChipDesc ;\n\tconst char *\tChip;\n} PCI_DEVTABLE, *PPCI_DEVTABLE ;\n" > ofile
print "typedef struct _PCI_DEVTABLE\n{\n\tunsigned short VenId ;\n\tunsigned short DevId ;\n\tunsigned short\tSubVenId ;\n\tunsigned short\tSubDevId ;\n\tconst char *\tChipDesc ;\n} PCI_DEVTABLE, *PPCI_DEVTABLE ;\n" > ofile
print "PCI_DEVTABLE\tPciDevTable [] =\n{" > ofile
for (i = 1; i <= devicecount; i++) {