summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Irofti <pirofti@cvs.openbsd.org>2010-07-02 00:23:43 +0000
committerPaul Irofti <pirofti@cvs.openbsd.org>2010-07-02 00:23:43 +0000
commit8b3d71903ef4c8cce2f0a6afcf7cf5cad2bacd52 (patch)
treed65a4d2a7ac646921fe38780778d521a0dd4ea62
parentbd2831d762afa2db130c069224bdb2b4153d5868 (diff)
Add Lenovo ThinkPad X100e quirk, from Brad.
-rw-r--r--sys/dev/pci/vga_pci.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/sys/dev/pci/vga_pci.c b/sys/dev/pci/vga_pci.c
index e07213945c6..d0c2dc1d2d9 100644
--- a/sys/dev/pci/vga_pci.c
+++ b/sys/dev/pci/vga_pci.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: vga_pci.c,v 1.52 2010/07/02 00:09:37 pirofti Exp $ */
+/* $OpenBSD: vga_pci.c,v 1.53 2010/07/02 00:23:42 pirofti Exp $ */
/* $NetBSD: vga_pci.c,v 1.3 1998/06/08 06:55:58 thorpej Exp $ */
/*
@@ -170,6 +170,11 @@ static const struct vga_device_description vga_devs[] = {
{ PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_ARRANDALE_IGD,
0x17aa, 0x215a },
{ 0xffff, 0xffff, 0xffff, 0xffff }, 1, 0
+ },
+ { /* Lenovo ThinkPad X100e */
+ { PCI_VENDOR_ATI, PCI_PRODUCT_ATI_RADEON_HD3200_2,
+ 0x17aa, 0x21b2 },
+ { 0xffff, 0xffff, 0xffff, 0xffff}, 1, 0
}
};
#endif