missed the trailing digit
authorjsg <jsg@openbsd.org>
Sat, 12 Jul 2014 23:30:14 +0000 (23:30 +0000)
committerjsg <jsg@openbsd.org>
Sat, 12 Jul 2014 23:30:14 +0000 (23:30 +0000)
sys/dev/pci/drm/i915/devlist.awk

index fd05f02..3802b5b 100644 (file)
@@ -3,7 +3,7 @@ BEGIN {
        print("static const struct pci_matchid i915_devices[] = {");
 }
 /INTEL_VGA_DEVICE\(0x/ {
-       val = substr($0, 19, 5);
+       val = substr($0, 19, 6);
        print "\t{ 0x8086,", val " },";
 }
 END {