blob: 3802b5bc84e378366c574a161df2ff77efaf1573 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
BEGIN {
print("/* THIS FILE AUTOMATICALLY GENERATED. DO NOT EDIT. */");
print("static const struct pci_matchid i915_devices[] = {");
}
/INTEL_VGA_DEVICE\(0x/ {
val = substr($0, 19, 6);
print "\t{ 0x8086,", val " },";
}
END {
print("};");
}
|