From: jsg Date: Sat, 12 Jul 2014 23:30:14 +0000 (+0000) Subject: missed the trailing digit X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=18c815e397b998e8b3f545c4394560f7354fceaa;p=openbsd missed the trailing digit --- diff --git a/sys/dev/pci/drm/i915/devlist.awk b/sys/dev/pci/drm/i915/devlist.awk index fd05f021e48..3802b5bc84e 100644 --- a/sys/dev/pci/drm/i915/devlist.awk +++ b/sys/dev/pci/drm/i915/devlist.awk @@ -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 {