Module Name:    src
Committed By:   shattered
Date:           Tue Nov  9 21:12:19 UTC 2010

Modified Files:
        src/sys/dev/pci: vga_pci.c

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

OK by wiz@


To generate a diff of this commit:
cvs rdiff -u -r1.49 -r1.50 src/sys/dev/pci/vga_pci.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/dev/pci/vga_pci.c
diff -u src/sys/dev/pci/vga_pci.c:1.49 src/sys/dev/pci/vga_pci.c:1.50
--- src/sys/dev/pci/vga_pci.c:1.49	Wed Feb 24 22:38:01 2010
+++ src/sys/dev/pci/vga_pci.c	Tue Nov  9 21:12:19 2010
@@ -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 {

Reply via email to