Module Name:    src
Committed By:   msaitoh
Date:           Mon Jul  2 04:04:08 UTC 2018

Modified Files:
        src/sys/dev/pci: ppbreg.h

Log Message:
 VGA 16 bit decode bit is not bit 3 but bit 4.


To generate a diff of this commit:
cvs rdiff -u -r1.8 -r1.9 src/sys/dev/pci/ppbreg.h

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/ppbreg.h
diff -u src/sys/dev/pci/ppbreg.h:1.8 src/sys/dev/pci/ppbreg.h:1.9
--- src/sys/dev/pci/ppbreg.h:1.8	Mon Dec 18 04:48:28 2017
+++ src/sys/dev/pci/ppbreg.h	Mon Jul  2 04:04:08 2018
@@ -1,4 +1,4 @@
-/*	$NetBSD: ppbreg.h,v 1.8 2017/12/18 04:48:28 msaitoh Exp $	*/
+/*	$NetBSD: ppbreg.h,v 1.9 2018/07/02 04:04:08 msaitoh Exp $	*/
 
 /*
  * Copyright (c) 1996 Christopher G. Demetriou.  All rights reserved.
@@ -100,7 +100,7 @@
 #define PPB_BC_SERR_ENABLE                 (1U << (1 + PPB_BC_BITBASE))
 #define PPB_BC_ISA_ENABLE                  (1U << (2 + PPB_BC_BITBASE))
 #define PPB_BC_VGA_ENABLE                  (1U << (3 + PPB_BC_BITBASE))
-#define PPB_BC_VGA16_ENABLE                (1U << (3 + PPB_BC_BITBASE))
+#define PPB_BC_VGA16_ENABLE                (1U << (4 + PPB_BC_BITBASE))
 #define PPB_BC_MASTER_ABORT_MODE           (1U << (5 + PPB_BC_BITBASE))
 #define PPB_BC_SECONDARY_RESET             (1U << (6 + PPB_BC_BITBASE))
 #define	PPB_BC_FAST_B2B_ENABLE		   (1U << (7 + PPB_BC_BITBASE))

Reply via email to