Lines Matching refs:printf
42 printf("/*\n") > dfile
43 printf(" * THIS FILE AUTOMATICALLY GENERATED. DO NOT EDIT.\n") \
45 printf(" *\n") > dfile
46 printf(" * generated from:\n") > dfile
47 printf(" *\t%s\n", VERSION) > dfile
48 printf(" */\n\n") > dfile
50 printf("/*\n") > hfile
51 printf(" * THIS FILE AUTOMATICALLY GENERATED. DO NOT EDIT.\n") \
53 printf(" *\n") > hfile
54 printf(" * generated from:\n") > hfile
55 printf(" *\t%s\n", VERSION) > hfile
56 printf(" */\n") > hfile
64 printf("duplicate vendor name %s\n", $2);
71 printf("#define\tPCI_VENDOR_%s\t%s\t", vendors[nvendors, 1],
79 printf("\t/* ") > hfile
84 printf("(") > hfile
90 printf("%s", $f) > hfile
92 printf(" ") > hfile
97 printf("%s", vendors[nvendors, i]) > hfile
99 printf(" ") > hfile
103 printf(")") > hfile
105 printf(" */") > hfile
106 printf("\n") > hfile
116 printf("#define\tPCI_PRODUCT_%s_%s\t%s\t", products[nproducts, 1],
124 printf("\t/* ") > hfile
129 printf("(") > hfile
135 printf("%s", $f) > hfile
137 printf(" ") > hfile
142 printf("%s", products[nproducts, i]) > hfile
144 printf(" ") > hfile
148 printf(")") > hfile
150 printf(" */") > hfile
151 printf("\n") > hfile
165 printf("\n") > dfile
170 printf("/* Descriptions of known vendors and devices. */\n") > dfile
171 printf("struct pci_known_vendor {\n") > dfile
172 printf("\tpci_vendor_id_t vendor;\n") > dfile
173 printf("\tconst char *vendorname;\n") > dfile
174 printf("};\n\n") > dfile
176 printf("struct pci_known_product {\n") > dfile
177 printf("\tpci_vendor_id_t vendor;\n") > dfile
178 printf("\tpci_product_id_t product;\n") > dfile
179 printf("\tconst char *productname;\n") > dfile
180 printf("};\n\n") > dfile
183 printf("static const struct pci_known_product pci_known_products[] = {\n") \
186 printf("\t{\n") > dfile
187 printf("\t PCI_VENDOR_%s, PCI_PRODUCT_%s_%s,\n",
191 printf("\t \"") > dfile
196 printf(" ") > dfile
197 printf("%s", products[i, j]) > dfile
201 printf("\",\n") > dfile
202 printf("\t},\n") > dfile
204 printf("\t{ 0, 0, NULL, }\n") > dfile
205 printf("};\n\n") > dfile
207 printf("static const struct pci_known_vendor pci_known_vendors[] = {\n") \
210 printf("\t{\n") > dfile
211 printf("\t PCI_VENDOR_%s,\n", vendors[i, 1]) \
213 printf("\t \"") > dfile
218 printf(" ") > dfile
219 printf("%s", vendors[i, j]) > dfile
223 printf("\",\n") > dfile
224 printf("\t},\n") > dfile
226 printf("\t{ 0, NULL, }\n") > dfile
227 printf("};\n") > dfile