Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/dev/pci PR/10000: disable fast scrolling on Cyrix GXLV (...



details:   https://anonhg.NetBSD.org/src/rev/3b72c88d758b
branches:  trunk
changeset: 758587:3b72c88d758b
user:      shattered <shattered%NetBSD.org@localhost>
date:      Tue Nov 09 21:12:19 2010 +0000

description:
PR/10000: disable fast scrolling on Cyrix GXLV (CS5530 chipset)

OK by wiz@

diffstat:

 sys/dev/pci/vga_pci.c |  6 ++++--
 1 files changed, 4 insertions(+), 2 deletions(-)

diffs (27 lines):

diff -r 05a178cbf450 -r 3b72c88d758b sys/dev/pci/vga_pci.c
--- a/sys/dev/pci/vga_pci.c     Tue Nov 09 20:55:14 2010 +0000
+++ b/sys/dev/pci/vga_pci.c     Tue Nov 09 21:12:19 2010 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: vga_pci.c,v 1.49 2010/02/24 22:38:01 dyoung Exp $      */
+/*     $NetBSD: vga_pci.c,v 1.50 2010/11/09 21:12:19 shattered Exp $   */
 
 /*
  * Copyright (c) 1995, 1996 Carnegie-Mellon University.
@@ -28,7 +28,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: vga_pci.c,v 1.49 2010/02/24 22:38:01 dyoung Exp $");
+__KERNEL_RCSID(0, "$NetBSD: vga_pci.c,v 1.50 2010/11/09 21:12:19 shattered Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -109,6 +109,8 @@
 } vga_pci_quirks[] = {
        {PCI_ID_CODE(PCI_VENDOR_SILMOTION, PCI_PRODUCT_SILMOTION_SM712),
         VGA_QUIRK_NOFASTSCROLL},
+       {PCI_ID_CODE(PCI_VENDOR_CYRIX, PCI_PRODUCT_CYRIX_CX5530_VIDEO),
+        VGA_QUIRK_NOFASTSCROLL},
 };
 
 static const struct {



Home | Main Index | Thread Index | Old Index