artulab
projects
/
openbsd
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
eda1cbd
)
missed the trailing digit
author
jsg
<jsg@openbsd.org>
Sat, 12 Jul 2014 23:30:14 +0000
(23:30 +0000)
committer
jsg
<jsg@openbsd.org>
Sat, 12 Jul 2014 23:30:14 +0000
(23:30 +0000)
sys/dev/pci/drm/i915/devlist.awk
patch
|
blob
|
history
diff --git
a/sys/dev/pci/drm/i915/devlist.awk
b/sys/dev/pci/drm/i915/devlist.awk
index
fd05f02
..
3802b5b
100644
(file)
--- 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 {