diff options
author | 2010-07-27 07:42:34 +0000 | |
---|---|---|
committer | 2010-07-27 07:42:34 +0000 | |
commit | 99b995a5cd80d233b088deb9aad6988d505793e4 (patch) | |
tree | ad151efae77003eafc6d31da654b163e9d49c198 | |
parent | fix some spacing issues; noted by kristaps (diff) | |
download | wireguard-openbsd-99b995a5cd80d233b088deb9aad6988d505793e4.tar.xz wireguard-openbsd-99b995a5cd80d233b088deb9aad6988d505793e4.zip |
Repost ATI Radeon HD4500 on HP Pavilion dv7-3160us using the emulator,
in the same style we have done for all other ATI Radeon devices found so
far. Fixes video on said machine on resume.
-rw-r--r-- | sys/dev/pci/vga_pci.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/sys/dev/pci/vga_pci.c b/sys/dev/pci/vga_pci.c index fca05f4d7de..a7e6e5214ba 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.56 2010/07/21 07:50:20 mlarkin Exp $ */ +/* $OpenBSD: vga_pci.c,v 1.57 2010/07/27 07:42:34 mlarkin Exp $ */ /* $NetBSD: vga_pci.c,v 1.3 1998/06/08 06:55:58 thorpej Exp $ */ /* @@ -188,6 +188,11 @@ static const struct vga_device_description vga_devs[] = { { PCI_VENDOR_ATI, PCI_PRODUCT_ATI_FIREGL_M24GL, 0x1014, 0x0570 }, { 0xffff, 0xffff, 0xffff, 0xffff}, 1, 0 + }, + { /* HP Pavilion dv7-3160us with ATI Radeon HD4500 */ + { PCI_VENDOR_ATI, PCI_PRODUCT_ATI_RADEON_HD4500_M, + 0x103c, 0x3639 }, + { 0xffff, 0xffff, 0xffff, 0xffff}, 1, 0 } }; #endif |